From d18b84743dc7671978503033e491bec21f0aaa87 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 5 May 2022 08:45:54 -0400 Subject: [PATCH] remove duplicate license header Signed-off-by: Sebastian Malton --- src/common/utils/wait.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/utils/wait.ts b/src/common/utils/wait.ts index 096e45b8a8..e87497f801 100644 --- a/src/common/utils/wait.ts +++ b/src/common/utils/wait.ts @@ -6,10 +6,6 @@ import type { IComputedValue } from "mobx"; import { runInAction, when } from "mobx"; import type { Disposer } from "./disposer"; -/** - * Copyright (c) OpenLens Authors. All rights reserved. - * Licensed under MIT License. See LICENSE in root directory for more information. - */ export async function waitUntilDefinied(getter: (() => T | null | undefined) | IComputedValue, opts?: { timeout?: number }): Promise { return new Promise((resolve, reject) => { let res: T | null | undefined;