Remove TODOs
This commit is contained in:
parent
769f80ec72
commit
456348d520
@ -213,8 +213,6 @@ public class MainController implements Initializable {
|
|||||||
.findFirst()
|
.findFirst()
|
||||||
.orElse(null);
|
.orElse(null);
|
||||||
|
|
||||||
// TODO: if there are no stations, then create a default station and select that
|
|
||||||
|
|
||||||
if (selectedStation == null) {
|
if (selectedStation == null) {
|
||||||
logger.log(Level.SEVERE, "Selected station '" + selectedStationName.get() + "' not found");
|
logger.log(Level.SEVERE, "Selected station '" + selectedStationName.get() + "' not found");
|
||||||
selectedStation = settings.getStations().get(0);
|
selectedStation = settings.getStations().get(0);
|
||||||
@ -319,8 +317,6 @@ public class MainController implements Initializable {
|
|||||||
|
|
||||||
settings.save();
|
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");
|
Path nextMessagePath = selectedStation.stationPath().resolve("next-message.txt");
|
||||||
|
|
||||||
String messageText;
|
String messageText;
|
||||||
|
@ -228,7 +228,6 @@ public class WindowsScheduler {
|
|||||||
logger.info("Executable Path: " + executablePath);
|
logger.info("Executable Path: " + executablePath);
|
||||||
|
|
||||||
Element command = doc.createElement("Command");
|
Element command = doc.createElement("Command");
|
||||||
// TODO: need to figure out the real invocation
|
|
||||||
command.appendChild(doc.createTextNode(executablePath.toString()));
|
command.appendChild(doc.createTextNode(executablePath.toString()));
|
||||||
exec.appendChild(command);
|
exec.appendChild(command);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user