1
0
Fork 0

BDFileSystem: fix Java 9 compatibility

This commit is contained in:
hpi1 2017-12-13 11:27:21 +02:00
parent 989a901cf3
commit 6efb9b951e
1 changed files with 5 additions and 0 deletions

View File

@ -38,4 +38,9 @@ class BDFileSystemImpl extends BDFileSystem {
public long getSpace(File f, int t) {
return fs.getSpace(f, t);
}
/* Java 9 */
public int getNameMax(String path) {
return 255;
}
}