Skip to content

Commit df2061d

Browse files
committed
bump integrations-api to 1.4.0
1 parent 33b378d commit df2061d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
<!-- runtime dependencies -->
4242

43-
<api.version>1.4.0-beta2</api.version>
43+
<api.version>1.4.0</api.version>
4444
<secret-service.version>2.0.1-alpha</secret-service.version>
4545
<kdewallet.version>1.4.0</kdewallet.version>
4646
<slf4j.version>2.0.13</slf4j.version>

src/main/java/org/cryptomator/linux/keychain/KDEWalletKeychainAccess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public boolean isLocked() {
4848
}
4949

5050
@Override
51-
public void storePassphrase(String key, String displayName, CharSequence passphrase) throws KeychainAccessException {
51+
public void storePassphrase(String key, String displayName, CharSequence passphrase, boolean ignored) throws KeychainAccessException {
5252
CheckUtil.checkState(wallet.isPresent(), "Keychain not supported.");
5353
wallet.get().storePassphrase(key, passphrase);
5454
}

src/main/java/org/cryptomator/linux/keychain/SecretServiceKeychainAccess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public boolean isLocked() {
4848
}
4949

5050
@Override
51-
public void storePassphrase(String key, String displayName, CharSequence passphrase) throws KeychainAccessException {
51+
public void storePassphrase(String key, String displayName, CharSequence passphrase, boolean ignored) throws KeychainAccessException {
5252
try (SimpleCollection keyring = new SimpleCollection()) {
5353
List<String> list = keyring.getItems(createAttributes(key));
5454
if (list == null || list.isEmpty()) {

0 commit comments

Comments
 (0)