提交 ad16b7de authored 作者: Thomas Mueller's avatar Thomas Mueller

The database now tries to detect if the classloader or virtual machine has almost shut down.

上级 7dc21ec5
...@@ -78,4 +78,9 @@ public class Resources { ...@@ -78,4 +78,9 @@ public class Resources {
} }
return data == null ? new byte[0] : data; return data == null ? new byte[0] : data;
} }
static boolean isShutdown() {
return FILES == null;
}
} }
...@@ -140,4 +140,8 @@ public class StringCache { ...@@ -140,4 +140,8 @@ public class StringCache {
softCache = new SoftReference(null); softCache = new SoftReference(null);
} }
static boolean isShutdown() {
return softCache == null;
}
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论