Paper bag fix the getComment method of AccountSshKey

Wrong index was used in the split string array.

Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2008-12-24 18:13:32 -08:00
parent 21ab7c863e
commit 3c38949d57

View File

@@ -117,7 +117,7 @@ public final class AccountSshKey {
if (parts.length < 3) {
return "";
}
return parts[3];
return parts[2];
}
public Timestamp getStoredOn() {