diff options
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java index 01bd8268b8..ba6929308c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java @@ -73,12 +73,12 @@ public class BitmapIndexImpl implements BitmapIndex { } @Override - public void addBitmapLookupListener(BitmapLookupListener listener) { - if (listener == null) { + public void addBitmapLookupListener(BitmapLookupListener l) { + if (l == null) { throw new IllegalArgumentException( JGitText.get().bitmapUseNoopNoListener); } - this.listener = listener; + this.listener = l; } int findPosition(AnyObjectId objectId) { |