language server is always copied into bundle data directory to simplify development turnaround cycles

This commit is contained in:
Martin Lippert
2017-02-15 16:23:28 +01:00
parent 01c31f29e1
commit e0ec74dab8

View File

@@ -94,14 +94,14 @@ public class SpringBootPropertiesLanguageServer extends ProcessStreamConnectionP
Bundle bundle = Platform.getBundle(Constants.PLUGIN_ID);
File dataFile = bundle.getDataFile(languageServer);
if (!dataFile.exists()) {
// if (!dataFile.exists()) {
try {
copyLanguageServerJAR(languageServer);
}
catch (Exception e) {
e.printStackTrace();
}
}
// }
return dataFile.getAbsolutePath();
}