Skip to content

Commit

Permalink
Fix one label
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi committed Oct 3, 2024
1 parent 9ad9c30 commit 2d9d6f4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/main/java/org/isf/telemetry/gui/TelemetryEdit.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ private JButton buildCloseButton() {
}

/**
* We could load checkboxes information from somewhere (properties file or from
* other strange places)
* We could load checkboxes information from somewhere (properties file or from other strange places)
*
* @return
*/
Expand Down Expand Up @@ -208,8 +207,7 @@ private List<CheckBoxWrapper> buildPermissionCheckboxes(ApplicationContext appli
}

/**
* Action for confirmation button: inserts for the first time in the telemetry
* table or updates the existing row
* Action for confirmation button: inserts for the first time in the telemetry table or updates the existing row
*
* @param checkboxes
* @param telemetryManager
Expand All @@ -223,8 +221,8 @@ public void actionPerformed(ActionEvent e) {

if (!agreementCheckbox.isSelected()) {
MessageDialog.info(TelemetryEdit.this,
MessageBundle.formatMessage("angal.telemetry.fmt.confirm.pleaseselecttoproceed",
MessageBundle.getMessage(KEY_TELEMETRY_CHECKBOX)));
"angal.telemetry.fmt.confirm.pleaseselecttoproceed",
MessageBundle.getMessage(KEY_TELEMETRY_CHECKBOX));
return;
}
Map<String, Boolean> consentMap = buildConsentData(checkboxes);
Expand All @@ -244,7 +242,7 @@ public void actionPerformed(ActionEvent e) {
return;
}
} catch (RuntimeException | OHException f) {
LOGGER.error("Something strange happened: {}", f.getMessage());
LOGGER.error("Something strange happened: {}", f.getMessage());
LOGGER.debug(f.getMessage(), f);
}
} else {
Expand Down

0 comments on commit 2d9d6f4

Please sign in to comment.