Browse Source

Cleanup: Remove redundant type arguments

Change-Id: I81ce2e25666f5acfce4d3ada6b71ae8c81a97a4d
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-4.9
Matthias Sohn 7 years ago
parent
commit
f4c5a54aa9
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java

2
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);
}
};

Loading…
Cancel
Save