Change-Id: Ic6d179bd2de0081633c22fb82ca68ea619cb686f
return this;
}
+ public List<RevCommit> parents() {
+ return Collections.unmodifiableList(parents);
+ }
+
public CommitBuilder noParents() {
parents.clear();
return this;
return this;
}
+ public String message() {
+ return message;
+ }
+
public CommitBuilder tick(int secs) {
tick = secs;
return this;
return this;
}
+ public PersonIdent author() {
+ return author;
+ }
+
public CommitBuilder committer(PersonIdent c) {
committer = c;
return this;
}
+ public PersonIdent committer() {
+ return committer;
+ }
+
public CommitBuilder insertChangeId() {
insertChangeId = true;
return this;