Skip to content

Commit

Permalink
fix possible null comparsion
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Feb 19, 2024
1 parent 251ad65 commit 99c89db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public ObservableValue<Boolean> validVaultPathProperty() {
}

public boolean isValidVaultPath() {
return validVaultPath.getValue();
return Boolean.TRUE.equals(validVaultPath.getValue());
}

public boolean isLoadingPresetLocations() {
Expand Down

0 comments on commit 99c89db

Please sign in to comment.