aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/CommitBuilder.java6
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectInserter.java4
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java6
3 files changed, 8 insertions, 8 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 {
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectInserter.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectInserter.java
index adc20b5b08..7d02c86ddd 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectInserter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectInserter.java
@@ -189,7 +189,7 @@ public abstract class ObjectInserter {
* 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 abstract class ObjectInserter {
* 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));
}
/**
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java
index 71e46494c6..8eadb6145c 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java
@@ -182,8 +182,8 @@ public class TagBuilder {
* @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 class TagBuilder {
* @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 {