summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2021-02-16 01:13:35 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2021-02-17 16:24:34 -0500
commit3b94ba6c24451ec3fc0c46b65125aba46ca299a5 (patch)
treee14256a02f4e7be335a949a0dac614dde8a9cd39 /org.eclipse.jgit/src
parent64cbea8a9794047fe576d03ab8a46e4eaf7eabee (diff)
downloadjgit-3b94ba6c24451ec3fc0c46b65125aba46ca299a5.tar.gz
jgit-3b94ba6c24451ec3fc0c46b65125aba46ca299a5.zip
Fix boxing warnings
Change-Id: Idf4887a99e87c375ec32e2fd289cfce82d78cbce Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileReftableStack.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileReftableStack.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileReftableStack.java
index e422767f09..b5e3927bcc 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileReftableStack.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/FileReftableStack.java
@@ -370,7 +370,7 @@ public class FileReftableStack implements AutoCloseable {
private String filename(long low, long high) {
return String.format("%012x-%012x-%08x", //$NON-NLS-1$
Long.valueOf(low), Long.valueOf(high),
- random.nextInt());
+ Integer.valueOf(random.nextInt()));
}
/**