1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-10 14:31:04 -04:00

Fix File.getDisplaySize() extension method

This commit is contained in:
Reinhard Pointner 2019-06-08 05:37:23 +07:00
parent 8b1224c474
commit c547beb111

View File

@ -262,7 +262,7 @@ public class ScriptShellMethods {
return FileUtilities.copyAs(self, new File(destination, self.getName())); return FileUtilities.copyAs(self, new File(destination, self.getName()));
} }
public String getDisplaySize(File self) { public static String getDisplaySize(File self) {
return FileUtilities.formatSize(self.length()); return FileUtilities.formatSize(self.length());
} }