* String.toFile() for convenience

This commit is contained in:
Reinhard Pointner 2014-04-26 15:13:43 +00:00
parent 721af3e209
commit 060bb1f037
1 changed files with 4 additions and 0 deletions

View File

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