Glowman554 / BetterNudel

System.exit() should only be invoked within application entry points JAVA-W0060
Bug risk
Major
3 occurrences in this check
System.exit should only be used in entrypoint methods
157                    e.printStackTrace();
158                }
159
160                System.exit(0);161            });
162
163            return "Big success!";
System.exit should only be used in entrypoint methods
460     */
461    private void formWindowClosing(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowClosing
462        stopAll();
463        System.exit(0);464    }//GEN-LAST:event_formWindowClosing
465
466    /**
12            public void run() {
13                try {
14                    Thread.sleep(10000L);
15                    System.exit(0);16                } catch (InterruptedException e) {
17                    Log.log(e);
18                }