Update #37 - Touch support without userscript, many other feats

This commit is contained in:
lax1dude
2024-09-21 20:17:42 -07:00
parent 173727c8c4
commit ec1ab8ece3
683 changed files with 62074 additions and 8996 deletions

View File

@ -20,7 +20,7 @@ import java.util.Map;
*/
public class LogManager {
private static final Map<String,Logger> loggerInstances = new HashMap();
private static final Map<String,Logger> loggerInstances = new HashMap<>();
public static final Object logLock = new Object();
public static Level logLevel = Level.DEBUG;

View File

@ -101,7 +101,7 @@ public class Logger {
log(Level.FATAL, msg);
}
private static final SimpleDateFormat fmt = EagRuntime.fixDateFormat(new SimpleDateFormat("hh:mm:ss+SSS"));
private static final SimpleDateFormat fmt = new SimpleDateFormat("hh:mm:ss+SSS");
private static final Date dateInstance = new Date();
public void log(Level level, String msg) {