Merge branch 'master' of github.com:spring-projects/sts4
This commit is contained in:
@@ -73,7 +73,7 @@ class BootJavaLanguageClient extends JavaProcessLanguageClient {
|
||||
'-Dorg.slf4j.simpleLogger.logFile=boot-java.log',
|
||||
'-Dorg.slf4j.simpleLogger.defaultLogLevel=debug',
|
||||
'-cp',
|
||||
`${toolsJar ? `${toolsJar}:` : ''}${lsJar}`
|
||||
`${toolsJar ? `${toolsJar}${path.delimiter}` : ''}${lsJar}`
|
||||
];
|
||||
});
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
atom-text-editor::shadow {
|
||||
atom-text-editor.editor {
|
||||
.gutter-boot-hint:before {
|
||||
content: url("atom://boot-java/styles/boot-icon.png");
|
||||
display: block;
|
||||
|
||||
@@ -101,7 +101,7 @@ export function activate(options: ActivatorOptions, context: VSCode.ExtensionCon
|
||||
const classpath = options.classpath(context);
|
||||
if (classpath) {
|
||||
args.push('-cp');
|
||||
args.push(classpath.join(':'));
|
||||
args.push(classpath.join(Path.delimiter));
|
||||
}
|
||||
}
|
||||
const launcher = options.launcher(context);
|
||||
|
||||
Reference in New Issue
Block a user