(File image2xFile)
| 78 | /** Open a splash window using the specified image. */ |
| 79 | // static void showSplash(File imageFile, boolean hidpi) { |
| 80 | static void showSplash(File image2xFile) { |
| 81 | if (instance == null) { |
| 82 | instance = new Splash(image2xFile); |
| 83 | instance.setVisible(true); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | |
| 88 | /** Closes the splash window when finished. */ |