mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-17 23:05:03 -05:00
Better output for GVFS sysinfo
This commit is contained in:
parent
1ac332e4a2
commit
d1927cd52d
@ -28,4 +28,9 @@ public class NativeGVFS implements GVFS {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("%s [%s]", getClass().getSimpleName(), lib_gio);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,11 @@ public class PlatformGVFS implements GVFS {
|
|||||||
return Protocol.forName(uri.getScheme()).getFile(gvfs, uri);
|
return Protocol.forName(uri.getScheme()).getFile(gvfs, uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("%s [%s]", getClass().getSimpleName(), gvfs);
|
||||||
|
}
|
||||||
|
|
||||||
public static enum Protocol {
|
public static enum Protocol {
|
||||||
|
|
||||||
FILE {
|
FILE {
|
||||||
|
Loading…
Reference in New Issue
Block a user