Skip to content

Commit 6fd93ef

Browse files
refined javadoc
1 parent 6b78f37 commit 6fd93ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)