MCPcopy Index your code
hub / github.com/processing/processing / exitActual

Method exitActual

core/src/processing/core/PApplet.java:3809–3815  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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 /**

Callers 3

exitMethod · 0.95
displayMethod · 0.80
runMethod · 0.80

Calls 1

exitMethod · 0.80

Tested by

no test coverage detected