1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Minor optimizations

This commit is contained in:
Reinhard Pointner 2016-10-08 05:45:31 +08:00
parent a4686dd3c6
commit 845dc26c83

View File

@ -34,8 +34,11 @@ public class FastFile extends File {
super(file.getPath());
}
public FastFile(File parent, String child) {
super(parent, child);
public FastFile(File parentFile, String name) {
super(parentFile, name);
this.parentFile = parentFile;
this.name = name;
}
public boolean stats(int bitIndex) {