@@ -38,7 +38,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph
3838 }
3939
4040 /**
41- * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}.
41+ * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}.
4242 * @return The stored passphrase for the given key or <code>null</code> if no value for the given key could be found.
4343 * @throws KeychainAccessException If loading the password failed
4444 */
@@ -47,15 +47,15 @@ default void storePassphrase(String key, String displayName, CharSequence passph
4747 /**
4848 * Deletes a passphrase with a given key.
4949 *
50- * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}.
50+ * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}.
5151 * @throws KeychainAccessException If deleting the password failed
5252 */
5353 void deletePassphrase (String key ) throws KeychainAccessException ;
5454
5555 /**
5656 * Updates a passphrase with a given key. Noop, if there is no item for the given key.
5757 *
58- * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}.
58+ * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}.
5959 * @param passphrase The secret to be updated in this keychain.
6060 * @throws KeychainAccessException If changing the password failed
6161 * @deprecated Please use {@link #changePassphrase(String, String, CharSequence)} instead
@@ -66,7 +66,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph
6666 /**
6767 * Updates a passphrase with a given key and stores a name for that key. Noop, if there is no item for the given key.
6868 *
69- * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}.
69+ * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}.
7070 * @param displayName The according name to the key. That's the name of the vault displayed in the UI.
7171 * It's passed to the keychain as an additional information about the vault besides the key.
7272 * The parameter does not need to be unique or be checked by the keychain.
0 commit comments