Merge branch 'master' of github.com:spring-projects/sts4

This commit is contained in:
Kris De Volder
2017-12-12 09:42:58 -08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -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}`
];
});
}

View File

@@ -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;

View File

@@ -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);