aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2016-02-16 01:06:02 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2016-02-16 01:06:11 +0100
commitff5c756c79d1c10575b927cf3bb2eb1e1fcc391b (patch)
tree7e1cc99ff5c12fbd745e43954d8a44dce3af6905 /org.eclipse.jgit
parent514b11ddccc93cf21475cd3e61dde5d2ba8171f2 (diff)
parent8c1d44e4366139ed971a98367962e7afb4893156 (diff)
downloadjgit-ff5c756c79d1c10575b927cf3bb2eb1e1fcc391b.tar.gz
jgit-ff5c756c79d1c10575b927cf3bb2eb1e1fcc391b.zip
Merge branch 'stable-4.2'
* stable-4.2: Revert "Fix warnings about unchecked conversion of MergeResult" Change-Id: I31c2e0679ad4cff77190858ac9a570d04841c386 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java b/org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java
index a9a8231eee..977f95341f 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java
@@ -102,7 +102,7 @@ public class MergeFormatter {
* metadata
* @throws IOException
*/
- public void formatMerge(OutputStream out, MergeResult<RawText> res, String baseName,
+ public void formatMerge(OutputStream out, MergeResult res, String baseName,
String oursName, String theirsName, String charsetName) throws IOException {
List<String> names = new ArrayList<String>(3);
names.add(baseName);