diff options
author | David Pursehouse | 2016-02-15 05:57:39 +0000 |
---|---|---|
committer | David Pursehouse | 2016-02-15 05:57:39 +0000 |
commit | f04bd20fc658365fcf24086ea26beaf3ff5f1ada (patch) | |
tree | 7fa21f30b27e9ca2f19a75dc28c8bfdee2dc121b | |
parent | 217760fee5c8f40ad52b2f07e89a1a14b30f1cbd (diff) | |
download | jgit-f04bd20fc658365fcf24086ea26beaf3ff5f1ada.tar.gz jgit-f04bd20fc658365fcf24086ea26beaf3ff5f1ada.tar.xz jgit-f04bd20fc658365fcf24086ea26beaf3ff5f1ada.zip |
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 <david.pursehouse@sonymobile.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java | 4 |
1 files 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 5e246b47b4..b312835bb3 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<ReceiveCommand> cmds) { + private void batch(List<ReceiveCommand> cmds) { // Validate that the target exists in a new RevWalk, as the RevWalk // from the RefUpdate might be reading back unflushed objects. Map<ObjectId, ObjectId> peeled = new HashMap<>(); |