undo getter changes

This commit is contained in:
Jan-Peter Klein 2024-05-10 15:57:04 +02:00
parent cd99eaa323
commit 1c47012033
No known key found for this signature in database
GPG Key ID: 90EDA3A7C822FD0E
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ public class MainWindowTitleController implements FxController {
}
public boolean isUpdateAvailable() {
return updateAvailable.getValue();
return updateAvailable.get();
}
public boolean isTrayIconPresent() {

View File

@ -168,7 +168,7 @@ public class UpdatesPreferencesController implements FxController {
}
public boolean isUpdateAvailable() {
return updateAvailable.getValue();
return updateAvailable.get();
}
public BooleanBinding checkFailedProperty() {