mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-23 16:28:51 -05:00
Minor optimizations
This commit is contained in:
parent
a4686dd3c6
commit
845dc26c83
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user