Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Koji Murata committed Apr 3, 2018
1 parent 63eb8f2 commit 9201098
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/vs/editor/contrib/indentation/indentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ export class ReindentSelectedLinesAction extends EditorAction {
let edits: IIdentifiedSingleEditOperation[] = [];

for (let selection of editor.getSelections()) {
console.log(selection);
let startLineNumber = selection.startLineNumber;
let endLineNumber = selection.endLineNumber;
if (startLineNumber !== endLineNumber && selection.endColumn === 1) {
Expand Down

0 comments on commit 9201098

Please sign in to comment.