rusefillc 2021-04-23 15:44:12 -04:00
parent a41df9675d
commit f98047006c
2 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,8 @@ public enum FileLog {
try { try {
fileLog = openLog(); fileLog = openLog();
} catch (FileNotFoundException e) { } catch (FileNotFoundException e) {
throw new IllegalStateException(e); // Access is denied would be an example of a legit exception to happen here
return;
} }
new Thread(FileLog::writeReadmeFile).start(); new Thread(FileLog::writeReadmeFile).start();
// a bit strange spot for this invocation for sure // a bit strange spot for this invocation for sure

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference; import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion { public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20210415; public static final int CONSOLE_VERSION = 20210423;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A"); public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() { public static long classBuildTimeMillis() {