Change-Id: Id1508c5f007a6a6680928992a1c7524c266a9ce4
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
return this.token;
}
+ @Override
+ public String toString() {
+ return "Action[" + token + "]";
+ }
+
static Action parse(String token) {
if (token.equals("pick") || token.equals("p"))
return PICK;
Step(Action action) {
this.action = action;
}
+
+ @Override
+ public String toString() {
+ return "Step[" + action + ", "
+ + ((commit == null) ? "null" : commit)
+ + ", "
+ + ((shortMessage == null) ? "null" : new String(
+ shortMessage)) + "]";
+ }
}
PersonIdent parseAuthor(byte[] raw) {