-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Reenable disabled tests and clean up #19443
Conversation
...-dxf2/src/main/java/org/hisp/dhis/dxf2/metadata/objectbundle/DefaultObjectBundleService.java
Fixed
Show fixed
Hide fixed
...-dxf2/src/main/java/org/hisp/dhis/dxf2/metadata/objectbundle/DefaultObjectBundleService.java
Fixed
Show fixed
Hide fixed
...-dxf2/src/main/java/org/hisp/dhis/dxf2/metadata/objectbundle/DefaultObjectBundleService.java
Fixed
Show fixed
Hide fixed
@@ -288,7 +289,7 @@ | |||
@Override | |||
public <T> T nonNullStagePostCondition(@CheckForNull T value) throws CancellationException { | |||
observer.run(); | |||
if (value == null) throw cancellationException(true); | |||
if (value instanceof ObjectBundleResult) if (value == null) throw cancellationException(true); |
Check warning
Code scanning / CodeQL
Useless null check Warning
value
...instanceof...
|
No description provided.