From bf33a6eeedb121128fc020d9e990730348b08caa Mon Sep 17 00:00:00 2001 From: Robin Rosenberg Date: Mon, 16 Apr 2012 23:34:47 +0200 Subject: [PATCH] Hide two warnings about boxing Change-Id: I1cb7cdb81481019f4a55221d38d771fcc9451529 Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/dircache/DirCacheEntry.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java index 0ff437e625..71d9c4bdf9 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java @@ -258,6 +258,7 @@ public class DirCacheEntry { * or DirCache file. Or if {@code stage} is outside of the * range 0..3, inclusive. */ + @SuppressWarnings("boxing") public DirCacheEntry(final byte[] newPath, final int stage) { if (!isValidPath(newPath)) throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidPath @@ -559,6 +560,7 @@ public class DirCacheEntry { * if the size exceeds the 2 GiB barrier imposed by current file * format limitations. */ + @SuppressWarnings("boxing") public void setLength(final long sz) { if (Integer.MAX_VALUE <= sz) throw new IllegalArgumentException(MessageFormat.format(JGitText -- 2.39.5