提交 1440bed8 authored 作者: Christian Hauser's avatar Christian Hauser

Reusing resource variable

上级 a4f11c35
...@@ -54,7 +54,7 @@ public class FilePathDisk extends FilePath { ...@@ -54,7 +54,7 @@ public class FilePathDisk extends FilePath {
} }
URL resource = this.getClass().getResource(fileName); URL resource = this.getClass().getResource(fileName);
if (resource != null) { if (resource != null) {
return Files.size(Paths.get(this.getClass().getResource(fileName).toURI())); return Files.size(Paths.get(resource.toURI()));
} else { } else {
return 0; return 0;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论