Skip to content

Commit

Permalink
fix method head to follow new interface
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Sep 16, 2024
1 parent 0750e9c commit d2a2794
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public String displayName() {
}

@Override
public void storePassphrase(String key, String displayName, CharSequence passphrase) throws KeychainAccessException {
public void storePassphrase(String key, String displayName, CharSequence passphrase, boolean ignored) throws KeychainAccessException {
loadKeychainEntriesIfNeeded();
ByteBuffer buf = UTF_8.encode(CharBuffer.wrap(passphrase));
byte[] cleartext = new byte[buf.remaining()];
Expand Down

0 comments on commit d2a2794

Please sign in to comment.