Skip to content

Commit

Permalink
Remove duplicate switch case (#59677)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceh authored and mjbvz committed Oct 15, 2018
1 parent d458ca8 commit 14ef425
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const getSymbolKind = (kind: string): vscode.SymbolKind => {
case PConst.Kind.variable: return vscode.SymbolKind.Variable;
case PConst.Kind.const: return vscode.SymbolKind.Variable;
case PConst.Kind.localVariable: return vscode.SymbolKind.Variable;
case PConst.Kind.variable: return vscode.SymbolKind.Variable;
case PConst.Kind.function: return vscode.SymbolKind.Function;
case PConst.Kind.localFunction: return vscode.SymbolKind.Function;
}
Expand Down

0 comments on commit 14ef425

Please sign in to comment.