mirror of
https://github.com/hierynomus/sshj.git
synced 2025-12-06 15:20:54 +03:00
method rename
This commit is contained in:
@@ -49,10 +49,10 @@ public class AuthChallengeResponse
|
||||
throws UserAuthException {
|
||||
return super.buildReq() // the generic stuff
|
||||
.putString("") // lang-tag
|
||||
.putString(getCommaSeparatedSubmethodList());
|
||||
.putString(buildCommaSeparatedSubmethodList());
|
||||
}
|
||||
|
||||
private String getCommaSeparatedSubmethodList() {
|
||||
private String buildCommaSeparatedSubmethodList() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (String submethod : provider.getSubmethods()) {
|
||||
if (sb.length() > 0)
|
||||
|
||||
Reference in New Issue
Block a user