- 
    Bug 
- 
    Resolution: Duplicate
- 
     P4 P4
- 
    None
- 
    fx2.1
- 
    None
- 
    2.1 b03 
                    Run next code snippet on Mac and Windows. Mac wouldn't print "after", but Windows would.
public class StageClose extends Application
{
public static void main(String[] args) {
launch(args);
System.err.println("after");
}
@Override
public void start(Stage stage) throws Exception {
stage.show();
stage.close();
}
}
public class StageClose extends Application
{
public static void main(String[] args) {
launch(args);
System.err.println("after");
}
@Override
public void start(Stage stage) throws Exception {
stage.show();
stage.close();
}
}
- duplicates
- 
                    JDK-8128180 Remove workaround on Mac where we are calling System.exit -           
- Closed
 
-