some minor cleanup
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jannik 2019-11-27 16:22:07 +01:00
부모 e4cc195fa8
커밋 03c69b232a
로그인 계정: Seil0
GPG 키 ID: E8459F3723C52C24
2개의 변경된 파일0개의 추가작업 그리고 7개의 파일을 삭제

파일 보기

@ -206,16 +206,12 @@ public class SettingsView {
@FXML
private void updateBtnAction(ActionEvent event) {
new UpdateController();
if (UpdateController.isUpdateAvailable()) {
updateBtn.setText(XMLController.getLocalBundle().getString("updateBtnUpdateAvailable"));
UpdateController.update();
} else {
updateBtn.setText(XMLController.getLocalBundle().getString("updateBtnNoUpdateAvailable"));
}
}
/** TODO can this be done async?

파일 보기

@ -57,9 +57,6 @@ public class UpdateController {
/**
* updater for Project HomeFlix based on cemu_UIs, checks for Updates and download it
*/
public UpdateController() {
}
public static void update() {
if (browserDownloadUrl != null) {