Add toByteArray to CommitBuilder, TreeBuilder

This better matches the existing API of TreeFormatter, but is just a
simple delegation to build().

Change-Id: I188f43acc34455e773d63836724b05e18f5c7a84
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:57:07 -08:00
parent 807ee4797f
commit 9ad802c15b
2 changed files with 23 additions and 0 deletions

View File

@ -310,6 +310,19 @@ public byte[] build() throws UnsupportedEncodingException {
return os.toByteArray();
}
/**
* Format this builder's state as a commit object.
*
* @return this object in the canonical commit format, suitable for storage
* in a repository.
* @throws UnsupportedEncodingException
* the encoding specified by {@link #getEncoding()} is not
* supported by this Java runtime.
*/
public byte[] toByteArray() throws UnsupportedEncodingException {
return build();
}
@Override
public String toString() {
StringBuilder r = new StringBuilder();

View File

@ -193,6 +193,16 @@ public byte[] build() {
return os.toByteArray();
}
/**
* Format this builder's state as an annotated tag object.
*
* @return this object in the canonical annotated tag format, suitable for
* storage in a repository.
*/
public byte[] toByteArray() {
return build();
}
@Override
public String toString() {
StringBuilder r = new StringBuilder();