diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2010-12-03 12:23:39 -0800 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-12-03 12:28:00 -0800 |
commit | f996fb1796c260c9848a83f081f78ca53eb206b8 (patch) | |
tree | 384a6d72ae1a2807b88327741e042ee86ffb15d7 /org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java | |
parent | 37001ddc8df83237840896ed82fe584a9163c698 (diff) | |
download | jgit-f996fb1796c260c9848a83f081f78ca53eb206b8.tar.gz jgit-f996fb1796c260c9848a83f081f78ca53eb206b8.zip |
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>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java index 8bd02ee298..288b1d4831 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java @@ -288,8 +288,8 @@ public class CommitBuilder { * 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 class CommitBuilder { * 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 { |