mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-09-18 22:14:26 +00:00
moving the nioAdapterImpl to the commons package
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package org.cryptomator.common.settings;
|
||||
|
||||
public enum NioAdapterImpl {
|
||||
|
||||
WEBDAV,
|
||||
FUSE
|
||||
|
||||
}
|
||||
@@ -30,7 +30,7 @@ public class Settings {
|
||||
public static final int DEFAULT_NUM_TRAY_NOTIFICATIONS = 3;
|
||||
public static final String DEFAULT_GVFS_SCHEME = "dav";
|
||||
public static final boolean DEFAULT_DEBUG_MODE = false;
|
||||
public static final String DEFAULT_NIO_ADAPTER = "WEBDAV";
|
||||
public static final String DEFAULT_NIO_ADAPTER = NioAdapterImpl.WEBDAV.name();
|
||||
|
||||
private final ObservableList<VaultSettings> directories = FXCollections.observableArrayList(VaultSettings::observables);
|
||||
private final BooleanProperty checkForUpdates = new SimpleBooleanProperty(DEFAULT_CHECK_FOR_UDPATES);
|
||||
|
||||
Reference in New Issue
Block a user