diff --git a/src/configuration.ts b/src/configuration.ts index 4a5165da..203ed923 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 'use strict'; import { workspace, WorkspaceConfiguration } from 'vscode'; diff --git a/src/extension.ts b/src/extension.ts index 2ca0bc7d..4d1bf453 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 'use strict'; import { rustupUpdate, ensureToolchain, checkForRls, execCmd, spawnProcess } from './rustup'; diff --git a/src/rustup.ts b/src/rustup.ts index 50927fb6..9ae641d5 100644 --- a/src/rustup.ts +++ b/src/rustup.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 'use strict'; import * as child_process from 'child_process'; diff --git a/src/spinner.ts b/src/spinner.ts index 5afb46e5..05ceaf27 100644 --- a/src/spinner.ts +++ b/src/spinner.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 'use strict'; import { window } from 'vscode'; diff --git a/src/tasks.ts b/src/tasks.ts index 3c90c3cb..4e741b34 100644 --- a/src/tasks.ts +++ b/src/tasks.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - import { Disposable, ShellExecution, ShellExecutionOptions, Task, TaskDefinition, TaskGroup, TaskPanelKind, TaskPresentationOptions, TaskProvider, TaskRevealKind, WorkspaceFolder, tasks, TaskExecution } from 'vscode'; export function activateTaskProvider(target: WorkspaceFolder): Disposable { diff --git a/src/utils/child_process.ts b/src/utils/child_process.ts index e1e783f1..f0400ea2 100644 --- a/src/utils/child_process.ts +++ b/src/utils/child_process.ts @@ -1,13 +1,3 @@ -// Copyright 2017 The RLS Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 'use strict'; /**