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

If some of the file system operations failed, System.gc() was called in a loop.…

If some of the file system operations failed, System.gc() was called in a loop. Now it is called once at most.
上级 29cba7f9
......@@ -107,7 +107,7 @@ public class FileSystemDisk extends FileSystem {
}
private static void wait(int i) {
if (i > 8) {
if (i == 8) {
System.gc();
}
try {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论