Skip to content

Commit

Permalink
Ignore shutdown hook exception
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jan 7, 2024
1 parent 6981029 commit 64c019c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/de/nqueensfaf/Solver.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public abstract class Solver {
}
}));
} catch (IllegalStateException e) {
System.err.println("could not register shutdown hook for completing auto save: " + e.getMessage());
// ignore
// System.err.println("could not register shutdown hook for completing auto save: " + e.getMessage());
}
});

Expand Down

0 comments on commit 64c019c

Please sign in to comment.