Skip to content

Commit 1b6f873

Browse files
authored
fix the bug that runner will interfere with Java LS (#309)
1 parent 3390059 commit 1b6f873

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

com.microsoft.java.test.plugin/src/main/java/com/microsoft/java/test/plugin/internal/JavaModelEventProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void elementChanged(ElementChangedEvent event) {
5252
JDTLanguageServer ls = JavaLanguageServerPlugin.getInstance().getProtocol();
5353
((JDTLanguageServer) ls)
5454
.getClientConnection()
55-
.executeClientCommand(
55+
.sendNotification(
5656
CLIENT_UPDATE_CLASSPATH,
5757
(Object[]) projectLocations.toArray(new String[projectLocations.size()]));
5858
} catch (Exception e) {

extension/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
- Test explorer will always show in the Activity Bar after the extension is activated. [#271](https://github.com/Microsoft/vscode-java-test/issues/271)
1111

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

1516
## 0.8.0 - 2018-08-08

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"main": "./out/src/extension",
4646
"contributes": {
4747
"javaExtensions": [
48-
"./server/com.microsoft.java.test.plugin-0.8.0.jar"
48+
"./server/com.microsoft.java.test.plugin-0.9.0.jar"
4949
],
5050
"views": {
5151
"test": [

0 commit comments

Comments
 (0)