Remove TODOs

This commit is contained in:
Nathan McRae 2025-05-26 21:41:50 -07:00
parent 769f80ec72
commit 456348d520
2 changed files with 0 additions and 5 deletions

View File

@ -213,8 +213,6 @@ public class MainController implements Initializable {
.findFirst()
.orElse(null);
// TODO: if there are no stations, then create a default station and select that
if (selectedStation == null) {
logger.log(Level.SEVERE, "Selected station '" + selectedStationName.get() + "' not found");
selectedStation = settings.getStations().get(0);
@ -319,8 +317,6 @@ public class MainController implements Initializable {
settings.save();
// TODO: Load message from file
// If the message we're overwriting is different from its file, then prompt to confirm
Path nextMessagePath = selectedStation.stationPath().resolve("next-message.txt");
String messageText;

View File

@ -228,7 +228,6 @@ public class WindowsScheduler {
logger.info("Executable Path: " + executablePath);
Element command = doc.createElement("Command");
// TODO: need to figure out the real invocation
command.appendChild(doc.createTextNode(executablePath.toString()));
exec.appendChild(command);