Skip to content

Commit

Permalink
fix #6772
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Mar 14, 2017
1 parent 07d588f commit 0f431e3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ export class DefinitionAction extends EditorAction {

// * remove falsy references
// * remove reference at the current pos
// * collapse ranges to start pos
let result: Location[] = [];
for (let i = 0; i < references.length; i++) {
let reference = references[i];
Expand All @@ -83,7 +82,7 @@ export class DefinitionAction extends EditorAction {

result.push({
uri,
range: Range.collapseToStart(range)
range
});
}
}
Expand Down

0 comments on commit 0f431e3

Please sign in to comment.