This commit is contained in:
parent
a41df9675d
commit
f98047006c
|
@ -54,7 +54,8 @@ public enum FileLog {
|
|||
try {
|
||||
fileLog = openLog();
|
||||
} 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();
|
||||
// a bit strange spot for this invocation for sure
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
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 long classBuildTimeMillis() {
|
||||
|
|
Loading…
Reference in New Issue