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

* String.toFile() for convenience

This commit is contained in:
Reinhard Pointner 2014-04-26 15:13:43 +00:00
parent 721af3e209
commit 060bb1f037

View File

@ -299,4 +299,8 @@ public class ExpressionFormatMethods {
return attr.lastModifiedTime().toMillis();
}
public static File toFile(String self) {
return new File(self);
}
}