Skip to content

Commit 24bfd20

Browse files
authored
Change type of CodeLensOptions.resolveProvider to Boolean (#534)
Fixes #533
1 parent ba59172 commit 24bfd20

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
Fixed issues: <https://github.com/eclipse/lsp4j/milestone/19?closed=1>
66

7+
Breaking API changes:
8+
9+
* Type of `CodeLensOptions.resolveProvider` changed from `boolean` to `Boolean`
10+
711
Breaking changes in behavior:
812

913
* In case a type argument for `Either` is declared as `Object`,

org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j/Protocol.xtend

+2-2
Original file line numberDiff line numberDiff line change
@@ -2275,12 +2275,12 @@ class CodeLensOptions extends AbstractWorkDoneProgressOptions {
22752275
/**
22762276
* Code lens has a resolve provider as well.
22772277
*/
2278-
boolean resolveProvider
2278+
Boolean resolveProvider
22792279

22802280
new() {
22812281
}
22822282

2283-
new(boolean resolveProvider) {
2283+
new(Boolean resolveProvider) {
22842284
this.resolveProvider = resolveProvider
22852285
}
22862286
}

0 commit comments

Comments
 (0)