diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-02-16 01:13:35 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2021-02-17 16:24:34 -0500 |
commit | 3b94ba6c24451ec3fc0c46b65125aba46ca299a5 (patch) | |
tree | e14256a02f4e7be335a949a0dac614dde8a9cd39 /org.eclipse.jgit/src | |
parent | 64cbea8a9794047fe576d03ab8a46e4eaf7eabee (diff) | |
download | jgit-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.java | 2 |
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())); } /** |