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

Work around Snappy sandbox issues

This commit is contained in:
Reinhard Pointner 2016-11-24 16:51:15 +08:00
parent ec2124f189
commit de75c2671b

View File

@ -9,10 +9,6 @@ public class PlatformGVFS implements GVFS {
private final File gvfs; private final File gvfs;
public PlatformGVFS(File gvfs) { public PlatformGVFS(File gvfs) {
if (gvfs.list() == null) {
throw new IllegalArgumentException(gvfs.getPath() + " is not a valid directory");
}
this.gvfs = gvfs; this.gvfs = gvfs;
} }