summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonio Barone <syntonyze@gmail.com>2022-01-20 11:58:09 +0100
committerAntonio Barone <syntonyze@gmail.com>2022-01-20 12:37:16 +0100
commit788f439c0e62a9502e470e9c8789e9386c91bd58 (patch)
tree989f5feecee213e276a024e0834915714be07b49
parent9b28f43cf16dc457415a051215b1dbc96cfd4c14 (diff)
downloadjgit-788f439c0e62a9502e470e9c8789e9386c91bd58.tar.gz
jgit-788f439c0e62a9502e470e9c8789e9386c91bd58.zip
Fix warning: The value of the parameter otp is not used
Silence warning by removing unused argument to the beginCopyAsIs() method. Change-Id: I94e7ff1c61cf8b03752de2974baa24b9c061c163
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/Pack.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/Pack.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/Pack.java
index 289c732f4e..6e74136c1b 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/Pack.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/Pack.java
@@ -50,7 +50,6 @@ import org.eclipse.jgit.errors.UnsupportedPackIndexVersionException;
import org.eclipse.jgit.errors.UnsupportedPackVersionException;
import org.eclipse.jgit.internal.JGitText;
import org.eclipse.jgit.internal.storage.pack.BinaryDelta;
-import org.eclipse.jgit.internal.storage.pack.ObjectToPack;
import org.eclipse.jgit.internal.storage.pack.PackOutputStream;
import org.eclipse.jgit.lib.AbbreviatedObjectId;
import org.eclipse.jgit.lib.AnyObjectId;
@@ -384,7 +383,7 @@ public class Pack implements Iterable<PackIndex.MutableEntry> {
final void copyAsIs(PackOutputStream out, LocalObjectToPack src,
boolean validate, WindowCursor curs) throws IOException,
StoredObjectRepresentationNotAvailableException {
- beginCopyAsIs(src);
+ beginCopyAsIs();
try {
copyAsIs2(out, src, validate, curs);
} finally {
@@ -604,7 +603,7 @@ public class Pack implements Iterable<PackIndex.MutableEntry> {
throw new EOFException();
}
- private synchronized void beginCopyAsIs(ObjectToPack otp)
+ private synchronized void beginCopyAsIs()
throws StoredObjectRepresentationNotAvailableException {
if (++activeCopyRawData == 1 && activeWindows == 0) {
try {