mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-04-29 05:42:39 -04:00
use !Files.exists instead of Files.notExists
This commit is contained in:
@@ -183,7 +183,7 @@ public class VaultListManager {
|
||||
Path pathToVaultConfig = pathToVault.resolve("vault.cryptomator");
|
||||
Path pathToMasterkey = pathToVault.resolve("masterkey.cryptomator");
|
||||
|
||||
if (Files.notExists(pathToVault)) {
|
||||
if (!Files.exists(pathToVault)) {
|
||||
return VaultState.Value.MISSING;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user