Skip to content

Commit bcd69b5

Browse files
Remove the emoji before Run/Debug codelens (#488)
Signed-off-by: Jinbo Wang <[email protected]>
1 parent 5ab4fd8 commit bcd69b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/debugCodeLensProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ class DebugCodeLensProvider implements vscode.CodeLensProvider {
6666
return _.flatten(mainMethods.map((method) => {
6767
return [
6868
new vscode.CodeLens(method.range, {
69-
title: "Run",
69+
title: "Run",
7070
command: JAVA_RUN_COMMAND,
7171
tooltip: "Run Java Program",
7272
arguments: [ method.mainClass, method.projectName, document.uri ],
7373
}),
7474
new vscode.CodeLens(method.range, {
75-
title: "🐞 Debug",
75+
title: "Debug",
7676
command: JAVA_DEBUG_COMMAND,
7777
tooltip: "Debug Java Program",
7878
arguments: [ method.mainClass, method.projectName, document.uri ],

0 commit comments

Comments
 (0)