File tree 2 files changed +6
-2
lines changed
org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
Fixed issues: < https://github.com/eclipse/lsp4j/milestone/19?closed=1 >
6
6
7
+ Breaking API changes:
8
+
9
+ * Type of ` CodeLensOptions.resolveProvider ` changed from ` boolean ` to ` Boolean `
10
+
7
11
Breaking changes in behavior:
8
12
9
13
* In case a type argument for ` Either ` is declared as ` Object ` ,
Original file line number Diff line number Diff line change @@ -2275,12 +2275,12 @@ class CodeLensOptions extends AbstractWorkDoneProgressOptions {
2275
2275
/**
2276
2276
* Code lens has a resolve provider as well.
2277
2277
*/
2278
- boolean resolveProvider
2278
+ Boolean resolveProvider
2279
2279
2280
2280
new () {
2281
2281
}
2282
2282
2283
- new (boolean resolveProvider) {
2283
+ new (Boolean resolveProvider) {
2284
2284
this . resolveProvider = resolveProvider
2285
2285
}
2286
2286
}
You can’t perform that action at this time.
0 commit comments