Skip to content

Commit

Permalink
Temporary fix (which breaks the LSP server) to prevent compile errors…
Browse files Browse the repository at this point in the history
… in Eclipse
  • Loading branch information
edwardalee committed Jan 19, 2022
1 parent 57c3df0 commit ee19274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ public void end(String message) {
* @param notification
*/
private void notifyProgress(WorkDoneProgressNotification notification) {
client.notifyProgress(new ProgressParams(Either.forRight(token), notification));
client.notifyProgress(new ProgressParams(Either.forRight(token), Either.forLeft(notification)));
}
}

2 comments on commit ee19274

@lhstrh
Copy link
Member

@lhstrh lhstrh commented on ee19274 Jan 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fix doesn't only break the language server, it also breaks the nightly build.

@lhstrh
Copy link
Member

@lhstrh lhstrh commented on ee19274 Jan 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will revert this commit for that reason. @edwardalee: please hold off with pulling from master for the moment. A fix is underway...

Please sign in to comment.