Remove the emoji before Run/Debug codelens (#488)

Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
This commit is contained in:
Jinbo Wang 2018-12-03 15:02:52 +08:00 committed by GitHub
parent 5ab4fd83ed
commit bcd69b52e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -66,13 +66,13 @@ class DebugCodeLensProvider implements vscode.CodeLensProvider {
return _.flatten(mainMethods.map((method) => {
return [
new vscode.CodeLens(method.range, {
title: "Run",
title: "Run",
command: JAVA_RUN_COMMAND,
tooltip: "Run Java Program",
arguments: [ method.mainClass, method.projectName, document.uri ],
}),
new vscode.CodeLens(method.range, {
title: "🐞 Debug",
title: "Debug",
command: JAVA_DEBUG_COMMAND,
tooltip: "Debug Java Program",
arguments: [ method.mainClass, method.projectName, document.uri ],