Skip to content

Commit 3b8997a

Browse files
committed
Add mimssing System.exit
1 parent 7b2086f commit 3b8997a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/net/sourceforge/pmd/util/fxdesigner/DesignerStarter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ public static void main(String[] args) {
8787

8888
readParameters(args);
8989

90-
launchGui(args);
90+
final int ret = launchGui(args);
91+
System.exit(ret);
9192
}
9293

9394
private static void setSystemProperties() {

0 commit comments

Comments
 (0)