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