diff --git a/app/src/main/java/com/zeapo/pwdstore/git/CloneOperation.java b/app/src/main/java/com/zeapo/pwdstore/git/CloneOperation.java index 0445b114f..3c5c20c65 100644 --- a/app/src/main/java/com/zeapo/pwdstore/git/CloneOperation.java +++ b/app/src/main/java/com/zeapo/pwdstore/git/CloneOperation.java @@ -46,6 +46,13 @@ public class CloneOperation extends GitOperation { return this; } + /** + * sets the authentication for the ssh-key scheme + * @param sshKey the ssh-key file + * @param username the username + * @param passphrase the passphrase + * @return the current object + */ @Override public CloneOperation setAuthentication(File sshKey, String username, String passphrase) { super.setAuthentication(sshKey, username, passphrase);