Skip to content

Commit

Permalink
fix the bug that runner will interfere with Java LS (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Sep 20, 2018
1 parent 3390059 commit 1b6f873
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void elementChanged(ElementChangedEvent event) {
JDTLanguageServer ls = JavaLanguageServerPlugin.getInstance().getProtocol();
((JDTLanguageServer) ls)
.getClientConnection()
.executeClientCommand(
.sendNotification(
CLIENT_UPDATE_CLASSPATH,
(Object[]) projectLocations.toArray(new String[projectLocations.size()]));
} catch (Exception e) {
Expand Down
1 change: 1 addition & 0 deletions extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Test explorer will always show in the Activity Bar after the extension is activated. [#271](https://github.com/Microsoft/vscode-java-test/issues/271)

### Fixed
- Fix a bug that Java Test Runner will interfere with Java language server. [#260](https://github.com/Microsoft/vscode-java-test/issues/260)
- Fix 'command not found error' when triggering commands. [#289](https://github.com/Microsoft/vscode-java-test/issues/289)

## 0.8.0 - 2018-08-08
Expand Down
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"main": "./out/src/extension",
"contributes": {
"javaExtensions": [
"./server/com.microsoft.java.test.plugin-0.8.0.jar"
"./server/com.microsoft.java.test.plugin-0.9.0.jar"
],
"views": {
"test": [
Expand Down

0 comments on commit 1b6f873

Please sign in to comment.