Skip to content

Commit 1d31925

Browse files
authored
fix(deps): bump com.vegardit.no-npe:no-npe-eea-all from 1.3.5 to 1.3.6 (#1285)
1 parent 2e1ac7e commit 1d31925

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

org.eclipse.lsp4e/src/org/eclipse/lsp4e/operations/documentLink/LSPDocumentLinkPresentationReconcilingStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void setProgressMonitor(@Nullable IProgressMonitor monitor) {
179179
}
180180

181181
@Override
182-
public void reconcile(DirtyRegion dirtyRegion, IRegion subRegion) {
182+
public void reconcile(DirtyRegion dirtyRegion, @Nullable IRegion subRegion) {
183183
// Do nothing
184184
}
185185

org.eclipse.lsp4e/src/org/eclipse/lsp4e/operations/folding/LSPFoldingReconcilingStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ private void markInvalidAnnotationsForDeletion(List<FoldingAnnotation> deletions
360360
}
361361

362362
@Override
363-
public void reconcile(DirtyRegion dirtyRegion, IRegion partition) {
363+
public void reconcile(DirtyRegion dirtyRegion, @Nullable IRegion partition) {
364364
// Because a reconcile will be performed always on the whole document (this is specified by the LSP),
365365
// prevent consecutive reconciling on every dirty region if the document has not changed.
366366
var ts = DocumentUtil.getDocumentModificationStamp(document);

org.eclipse.lsp4e/src/org/eclipse/lsp4e/operations/highlight/HighlightReconcilingStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public void preferenceChange(PreferenceChangeEvent event) {
318318
}
319319

320320
@Override
321-
public void reconcile(DirtyRegion dirtyRegion, IRegion subRegion) {
321+
public void reconcile(DirtyRegion dirtyRegion, @Nullable IRegion subRegion) {
322322
// Do nothing
323323
}
324324

org.eclipse.lsp4e/src/org/eclipse/lsp4e/operations/linkedediting/LSPLinkedEditingReconcilingStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public void setDocument(@Nullable IDocument document) {
144144
}
145145

146146
@Override
147-
public void reconcile(DirtyRegion dirtyRegion, IRegion subRegion) {
147+
public void reconcile(DirtyRegion dirtyRegion, @Nullable IRegion subRegion) {
148148
}
149149

150150
@Override

org.eclipse.lsp4e/src/org/eclipse/lsp4e/operations/semanticTokens/SemanticHighlightReconcilerStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public void initialReconcile() {
259259
}
260260

261261
@Override
262-
public void reconcile(final DirtyRegion dirtyRegion, final IRegion subRegion) {
262+
public void reconcile(final DirtyRegion dirtyRegion, final @Nullable IRegion subRegion) {
263263
fullReconcileOnce();
264264
}
265265

target-platforms/target-platform-latest/target-platform-latest.target

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<!-- External Eclipse null Annotations, see https://github.com/vegardit/no-npe -->
3333
<groupId>com.vegardit.no-npe</groupId>
3434
<artifactId>no-npe-eea-all</artifactId>
35-
<version>1.3.5</version>
35+
<version>1.3.6</version>
3636
<type>jar</type>
3737
</dependency>
3838
</dependencies>

0 commit comments

Comments
 (0)