moved System.exit() to end of main.

This commit is contained in:
beard%netscape.com 1999-11-04 06:15:55 +00:00
Родитель 66d18685e7
Коммит 41c65765a6
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -53,6 +53,9 @@ public class tracesoup {
cook(arg);
}
}
// quit the application.
System.exit(0);
}
static void cook(String inputName) {
@ -83,9 +86,6 @@ public class tracesoup {
writer.println("</PRE>");
writer.close();
// quit the application.
System.exit(0);
} catch (Exception e) {
e.printStackTrace(System.err);
}