Reverted changes to WebDavVolume#getMountPoint()

See: https://github.com/cryptomator/cryptomator/pull/1307#discussion_r472888268
This commit is contained in:
JaniruTEC
2020-09-30 14:09:01 +02:00
parent 9657a13912
commit 354de225ed
@@ -27,6 +27,7 @@ public class WebDavVolume implements Volume {
private WebDavServer server;
private WebDavServletController servlet;
private Mounter.Mount mount;
private Path mountPoint;
@Inject
public WebDavVolume(Provider<WebDavServer> serverProvider, VaultSettings vaultSettings, Settings settings) {
@@ -97,7 +98,7 @@ public class WebDavVolume implements Volume {
@Override
public Optional<Path> getMountPoint() {
return Optional.empty(); //TODO
return Optional.ofNullable(mountPoint); //TODO
}
@Override