Skip to content

Commit

Permalink
Missing copyright (microsoft#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford authored Sep 30, 2020
1 parent 0130252 commit 9827b17
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/vscodeIntegration/RenameCodeActionProvider.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
// ---------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.md in the project root for license information.
// ---------------------------------------------------------------------------------------------

import * as vscode from 'vscode';
import { PositionContext } from '../documents/positionContexts/PositionContext';
import { getRenameError } from '../util/getRenameError';

const command = 'editor.action.rename';

export class RenameCodeActionProvider implements vscode.CodeActionProvider {

constructor(private action: (document: vscode.TextDocument, position: vscode.Position) => Promise<PositionContext | undefined>) {
Expand Down

0 comments on commit 9827b17

Please sign in to comment.