Skip to content

Commit

Permalink
Remove System.out
Browse files Browse the repository at this point in the history
  • Loading branch information
rwinch committed Jan 8, 2024
1 parent e30f840 commit 4361919
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ final class ApplicationPortFileWatcher {
*/
int getApplicationPort() {
Integer port;
// FIXME: remove print statement
System.out.println("Waiting on " + this.applicationPortFile);
// FIXME: Add a timeout
try (WatchService watch = FileSystems.getDefault().newWatchService()) {
this.applicationPortFile.getParentFile().toPath().register(watch, StandardWatchEventKinds.ENTRY_CREATE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public void start() {
catch (Exception ex) {
throw new RuntimeException("Failed to run the command", ex);
}
System.out.println("Done Execute");
}

public void stop() {
Expand Down

0 comments on commit 4361919

Please sign in to comment.