From 788f439c0e62a9502e470e9c8789e9386c91bd58 Mon Sep 17 00:00:00 2001 From: Antonio Barone Date: Thu, 20 Jan 2022 11:58:09 +0100 Subject: [PATCH] Fix warning: The value of the parameter otp is not used Silence warning by removing unused argument to the beginCopyAsIs() method. Change-Id: I94e7ff1c61cf8b03752de2974baa24b9c061c163 --- .../src/org/eclipse/jgit/internal/storage/file/Pack.java | 5 ++--- 1 file 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 289c732f4..6e74136c1 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.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 @@ void copyPackAsIs(PackOutputStream out, WindowCursor curs) 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 @@ private void readFully(final long position, final byte[] dstbuf, throw new EOFException(); } - private synchronized void beginCopyAsIs(ObjectToPack otp) + private synchronized void beginCopyAsIs() throws StoredObjectRepresentationNotAvailableException { if (++activeCopyRawData == 1 && activeWindows == 0) { try {