Skip to content

Commit

Permalink
Fixed sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Dec 4, 2024
1 parent 16ef2b6 commit 1b296aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public Uni<Onboarding> customValidation(Product product) {
@Override
public Uni<Boolean> isValid() {
Boolean result = super.registryResource;
if (Objects.isNull(result) || !result) {
if (Objects.isNull(result) || result == false) {
return Uni.createFrom()
.failure(
new InvalidRequestException(
Expand Down

0 comments on commit 1b296aa

Please sign in to comment.