mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-08 11:22:40 +03:00
Instantiating SplashScreenHelper in main() was leaving it null for the tests. Fixed
This commit is contained in:
@@ -57,7 +57,7 @@ import static processing.app.I18n._;
|
||||
public class Base {
|
||||
|
||||
static private boolean commandLine;
|
||||
public static SplashScreenHelper splashScreenHelper;
|
||||
public static SplashScreenHelper splashScreenHelper = new SplashScreenHelper(SplashScreen.getSplashScreen());
|
||||
|
||||
// A single instance of the preferences window
|
||||
Preferences preferencesFrame;
|
||||
@@ -89,8 +89,6 @@ public class Base {
|
||||
System.setProperty("awt.useSystemAAFontSettings", "on");
|
||||
System.setProperty("swing.aatext", "true");
|
||||
|
||||
splashScreenHelper = new SplashScreenHelper(SplashScreen.getSplashScreen());
|
||||
|
||||
BaseNoGui.initLogger();
|
||||
|
||||
BaseNoGui.notifier = new GUIUserNotifier();
|
||||
|
Reference in New Issue
Block a user