Browse Source

Merge "Add toByteArray to CommitBuilder, TreeBuilder"

stable-0.10
Chris Aniszczyk 14 years ago committed by Code Review
parent
commit
731f84559d
  1. 13
      org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java
  2. 10
      org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java

13
org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java

@ -310,6 +310,19 @@ public class CommitBuilder {
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();

10
org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java

@ -193,6 +193,16 @@ public class TagBuilder {
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();

Loading…
Cancel
Save