diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-03-31 02:07:02 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-03-31 02:07:02 +0000 |
commit | 57cd7c8d29fb0785c7a674156b297871d1fce1b1 (patch) | |
tree | 666950b6ca0abb6c030fa28bde65271a4aeb52d7 /src/org/apache/fop/apps | |
parent | f0f7fabbe9f1f14bc70eb1ed7abfab67005ac60d (diff) | |
download | xmlgraphics-fop-57cd7c8d29fb0785c7a674156b297871d1fce1b1.tar.gz xmlgraphics-fop-57cd7c8d29fb0785c7a674156b297871d1fce1b1.zip |
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
Diffstat (limited to 'src/org/apache/fop/apps')
-rw-r--r-- | src/org/apache/fop/apps/Fop.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/org/apache/fop/apps/Fop.java b/src/org/apache/fop/apps/Fop.java index 727fbbaf3..65d87665a 100644 --- a/src/org/apache/fop/apps/Fop.java +++ b/src/org/apache/fop/apps/Fop.java @@ -12,6 +12,7 @@ public class Fop { CommandLineOptions options = new CommandLineOptions (args); Starter starter = options.getStarter(); starter.run(); + System.exit(0); } } |