summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2017-08-30 01:21:40 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2017-08-30 03:07:34 +0200
commitf4c5a54aa95f97cf653a2519e9af22738a7b7e34 (patch)
treedaa2dfb2dc6c3068c569c0dae24fb483c1c6a13d /org.eclipse.jgit
parente271e2f688704753f64971bec93f88fc828fc4f4 (diff)
downloadjgit-f4c5a54aa95f97cf653a2519e9af22738a7b7e34.tar.gz
jgit-f4c5a54aa95f97cf653a2519e9af22738a7b7e34.zip
Cleanup: Remove redundant type arguments
Change-Id: I81ce2e25666f5acfce4d3ada6b71ae8c81a97a4d 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/diff/MyersDiff.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java
index e1bda116bf..a3860de04c 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java
@@ -119,7 +119,7 @@ public class MyersDiff<S extends Sequence> {
public <S extends Sequence> void diffNonCommon(EditList edits,
HashedSequenceComparator<S> cmp, HashedSequence<S> a,
HashedSequence<S> b, Edit region) {
- new MyersDiff<S>(edits, cmp, a, b, region);
+ new MyersDiff<>(edits, cmp, a, b, region);
}
};