mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 09:01:08 +03:00
[FIX] Дефолтное значение IGN_OVERFLOW.
This commit is contained in:
parent
f4dcd99639
commit
1e169ce55b
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) th
|
||||||
};
|
};
|
||||||
|
|
||||||
public static final String IGN_OVERFLOW = "launcher.dirwatcher.ignoreOverflows";
|
public static final String IGN_OVERFLOW = "launcher.dirwatcher.ignoreOverflows";
|
||||||
private static final boolean PROP_IGN_OVERFLOW = Boolean.getBoolean(IGN_OVERFLOW);
|
private static final boolean PROP_IGN_OVERFLOW = Boolean.parseBoolean(System.getProperty(IGN_OVERFLOW, "true"));
|
||||||
|
|
||||||
private static void handleError(Throwable e) {
|
private static void handleError(Throwable e) {
|
||||||
LogHelper.error(e);
|
LogHelper.error(e);
|
||||||
|
|
Loading…
Reference in a new issue