Skip to content

Commit

Permalink
Updated to use Either class in parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardalee committed Jan 14, 2022
1 parent 968c04f commit fb447a2
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)));
}
}

0 comments on commit fb447a2

Please sign in to comment.