Browse Source

Added explicit System.exit(0) when main is done to work around MacOS X

JDK issue which leaves the JVM running when main is done on command line
apps.
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194182 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-0_18_1
Kelly Campbell 23 years ago
parent
commit
57cd7c8d29
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/org/apache/fop/apps/Fop.java

+ 1
- 0
src/org/apache/fop/apps/Fop.java View File

@@ -12,6 +12,7 @@ public class Fop {
CommandLineOptions options = new CommandLineOptions (args);
Starter starter = options.getStarter();
starter.run();
System.exit(0);
}
}


Loading…
Cancel
Save