Browse Source

Hide warnings about field hiding in the MyersDiff code

Just suppress warning in this stable code rather then fixing names

Change-Id: I07580aa3cbdaa66852a5c919769bbd9020d78703
stable-3.5
Robin Rosenberg 10 years ago committed by Matthias Sohn
parent
commit
4c6857d1ec
  1. 1
      org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java

1
org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java

@ -109,6 +109,7 @@ import org.eclipse.jgit.util.LongList;
* @param <S>
* type of sequence.
*/
@SuppressWarnings("hiding")
public class MyersDiff<S extends Sequence> {
/** Singleton instance of MyersDiff. */
public static final DiffAlgorithm INSTANCE = new LowLevelDiffAlgorithm() {

Loading…
Cancel
Save