Remove some unnecessary printlns

This commit is contained in:
2025-07-05 13:47:51 -07:00
parent b25fea4549
commit 2992572651
2 changed files with 0 additions and 5 deletions

View File

@ -138,13 +138,10 @@ public class StationSelectionController {
while (change.next()) {
if (change.wasAdded()) {
for (StationSettings addedStation : change.getAddedSubList()) {
System.out.println("Added: " + addedStation.getName());
}
}
if (change.wasRemoved()) {
for (StationSettings removedStation : change.getRemoved()) {
System.out.println("Removed: " + removedStation.getName());
try {
removedStation.deleteDir();
} catch (IOException e) {
@ -170,7 +167,6 @@ public class StationSelectionController {
if (selectedStation != null) {
stage.setUserData(selectedStation.getName());
System.out.println("Selected Station: " + selectedStation.getName());
}
stage.close();
}

View File

@ -565,7 +565,6 @@ public class StationSettingsController {
messagePeriod.set(settings.getMessagePeriod());
username.set(settings.getUsername());
password.set(settings.getPassword());
System.out.println(settings.getPrefixes());
prefixListView.getItems().addAll(settings.getPrefixes());
scheduleStartDate.set(settings.getScheduleStart().withZoneSameInstant(ZoneId.systemDefault()).toLocalDate());
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");