(String[] args)
| 8 | |
| 9 | public class BaseSplash { |
| 10 | static public void main(String[] args) { |
| 11 | try { |
| 12 | final boolean hidpi = Toolkit.highResImages(); |
| 13 | final String filename = "lib/about-" + (hidpi ? 2 : 1) + "x.png"; |
| 14 | File splashFile = Platform.getContentFile(filename); |
| 15 | SplashWindow.splash(splashFile.toURI().toURL(), hidpi); |
| 16 | SplashWindow.invokeMain("processing.app.Base", args); |
| 17 | SplashWindow.disposeSplash(); |
| 18 | } catch (Exception e) { |
| 19 | e.printStackTrace(); |
| 20 | // !@#!@$$! umm |
| 21 | //SplashWindow.invokeMain("processing.app.Base", args); |
| 22 | } |
| 23 | } |
| 24 | } |
nothing calls this directly
no test coverage detected