Merge branch 'develop' into feature/win-auto-theme

# Conflicts:
#	main/pom.xml
This commit is contained in:
Armin Schrenk
2021-02-24 12:25:04 +01:00
4 changed files with 19 additions and 10 deletions
@@ -68,6 +68,11 @@ public class KeychainManager implements KeychainAccessProvider {
return keychain.getValue() != null;
}
@Override
public boolean isLocked() {
return keychain.getValue() == null || keychain.get().isLocked();
}
/**
* Checks if the keychain knows a passphrase for the given key.
* <p>
@@ -44,4 +44,9 @@ class MapKeychainAccess implements KeychainAccessProvider {
return true;
}
@Override
public boolean isLocked() {
return false;
}
}