From 40bf8e757b71a23c9f2a9003e4cbb8412bcb7aa7 Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Mon, 14 Feb 2022 12:16:38 +0200 Subject: [PATCH] Remove duplicate license header Signed-off-by: Janne Savolainen --- src/main/router-content-types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/router-content-types.ts b/src/main/router-content-types.ts index ee820f5e0b..e908ccc3e1 100644 --- a/src/main/router-content-types.ts +++ b/src/main/router-content-types.ts @@ -4,10 +4,6 @@ */ import type { LensApiResult } from "./router"; -/** - * Copyright (c) OpenLens Authors. All rights reserved. - * Licensed under MIT License. See LICENSE in root directory for more information. - */ export interface LensApiResultContentType { resultMapper: (result: LensApiResult) => ({ statusCode: number, content: any, headers: { [ name: string ]: string }}) }