method rename

This commit is contained in:
Shikhar Bhushan
2010-05-24 22:09:32 +01:00
parent 98529f733c
commit 693379feb4

View File

@@ -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)