when Launcher.java calls:
DownloadWindow.showLaunchingApplication()
...
DownloadWindow.disposeWindow()
you sometimes see a null pointer exception from within showLaunchingApplication.
The reason is this is within an invokeLater, and the code in disposeWindow that sets downloadWindow = null;
is not.
DownloadWindow.showLaunchingApplication()
...
DownloadWindow.disposeWindow()
you sometimes see a null pointer exception from within showLaunchingApplication.
The reason is this is within an invokeLater, and the code in disposeWindow that sets downloadWindow = null;
is not.