Skip to content

Commit

Permalink
Replaced null with false
Browse files Browse the repository at this point in the history
  • Loading branch information
vaisakhkannan committed Nov 7, 2024
1 parent 5aa8e99 commit 3255846
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void beginDiagnostics(JavaDiagnosticsContext context) {
},
e -> {
LOGGER.log(Level.WARNING, "Error while calling beginDiagnostics", e);
return null;
return false;
}
);
}
Expand Down Expand Up @@ -98,7 +98,7 @@ public void endDiagnostics(JavaDiagnosticsContext context) {
},
e -> {
LOGGER.log(Level.WARNING, "Error while calling endDiagnostics", e);
return null;
return false;
}
);
}
Expand Down

0 comments on commit 3255846

Please sign in to comment.