Some subclasses (I'm looking at you, processing.py) might wish to do something other than actually terminate the JVM. This gives them a chance to do whatever they have in mind when cleaning up.
()
| 3807 | * they have in mind when cleaning up. |
| 3808 | */ |
| 3809 | public void exitActual() { |
| 3810 | try { |
| 3811 | System.exit(0); |
| 3812 | } catch (SecurityException e) { |
| 3813 | // don't care about applet security exceptions |
| 3814 | } |
| 3815 | } |
| 3816 | |
| 3817 | |
| 3818 | /** |