Correct CommitBuilder, TagBuilder method to be build()

The correct names for these is build(), as that is what a Java
developer will expect given the "builder" pattern.

Bug: 323541
Change-Id: I35042bdc95a955beeaee29e54bde10e4240b2a71
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Reviewed-by: Chris Aniszczyk <caniszczyk@gmail.com>
This commit is contained in:
Shawn O. Pearce 2010-12-03 12:23:39 -08:00
parent 37001ddc8d
commit f996fb1796
5 changed files with 10 additions and 10 deletions

View File

@ -338,7 +338,7 @@ public void testParse_PublicParseMethod()
src.setCommitter(committer);
src.setMessage("Test commit\n\nThis is a test.\n");
RevCommit p = RevCommit.parse(src.format());
RevCommit p = RevCommit.parse(src.build());
assertEquals(src.getTreeId(), p.getTree());
assertEquals(0, p.getParentCount());
assertEquals(author, p.getAuthorIdent());

View File

@ -407,7 +407,7 @@ public void testParse_PublicParseMethod() throws CorruptObjectException {
src.setTag("a.test");
src.setMessage("Test tag\n\nThis is a test.\n");
RevTag p = RevTag.parse(src.format());
RevTag p = RevTag.parse(src.build());
assertEquals(src.getObjectId(), p.getObject());
assertEquals(committer, p.getTaggerIdent());
assertEquals("a.test", p.getTagName());

View File

@ -288,8 +288,8 @@ public Charset getEncoding() {
* the encoding specified by {@link #getEncoding()} is not
* supported by this Java runtime.
*/
public byte[] format() throws UnsupportedEncodingException {
return format(new ObjectInserter.Formatter());
public byte[] build() throws UnsupportedEncodingException {
return build(new ObjectInserter.Formatter());
}
/**
@ -308,7 +308,7 @@ public byte[] format() throws UnsupportedEncodingException {
* the encoding specified by {@link #getEncoding()} is not
* supported by this Java runtime.
*/
public byte[] format(ObjectInserter oi) throws UnsupportedEncodingException {
public byte[] build(ObjectInserter oi) throws UnsupportedEncodingException {
ByteArrayOutputStream os = new ByteArrayOutputStream();
OutputStreamWriter w = new OutputStreamWriter(os, getEncoding());
try {

View File

@ -189,7 +189,7 @@ public ObjectId idFor(int objectType, long length, InputStream in)
* the object could not be stored.
*/
public final ObjectId insert(CommitBuilder builder) throws IOException {
return insert(Constants.OBJ_COMMIT, builder.format(this));
return insert(Constants.OBJ_COMMIT, builder.build(this));
}
/**
@ -205,7 +205,7 @@ public final ObjectId insert(CommitBuilder builder) throws IOException {
* the object could not be stored.
*/
public final ObjectId insert(TagBuilder builder) throws IOException {
return insert(Constants.OBJ_TAG, builder.format(this));
return insert(Constants.OBJ_TAG, builder.build(this));
}
/**

View File

@ -182,8 +182,8 @@ public void setMessage(final String newMessage) {
* @return this object in the canonical annotated tag format, suitable for
* storage in a repository.
*/
public byte[] format() {
return format(new ObjectInserter.Formatter());
public byte[] build() {
return build(new ObjectInserter.Formatter());
}
/**
@ -199,7 +199,7 @@ public byte[] format() {
* @return this object in the canonical annotated tag format, suitable for
* storage in a repository.
*/
public byte[] format(ObjectInserter oi) {
public byte[] build(ObjectInserter oi) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
OutputStreamWriter w = new OutputStreamWriter(os, Constants.CHARSET);
try {