From f04bd20fc658365fcf24086ea26beaf3ff5f1ada Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Mon, 15 Feb 2016 14:57:39 +0900 Subject: [PATCH] InMemoryRepository: Remove unused RevWalk from batch method signature The RevWalk given in the arguments is not used. According to the comment at the top of the method, a new RevWalk is intentionally used in the implementation. Remove the unused argument. Change-Id: Iec81a1341d5bf377801475845b96a465753096ef Signed-off-by: David Pursehouse --- .../eclipse/jgit/internal/storage/dfs/InMemoryRepository.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java index 5e246b47b..b312835bb 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java @@ -274,7 +274,7 @@ public class InMemoryRepository extends DfsRepository { if (performsAtomicTransactions()) { try { lock.writeLock().lock(); - batch(walk, getCommands()); + batch(getCommands()); } finally { lock.writeLock().unlock(); } @@ -304,7 +304,7 @@ public class InMemoryRepository extends DfsRepository { return new RefCache(ids.toRefList(), sym.toRefList()); } - private void batch(RevWalk walk, List cmds) { + private void batch(List cmds) { // Validate that the target exists in a new RevWalk, as the RevWalk // from the RefUpdate might be reading back unflushed objects. Map peeled = new HashMap<>();