Browse Source

Hide two warnings about boxing

Change-Id: I1cb7cdb81481019f4a55221d38d771fcc9451529
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v2.0.0.201206130900-r
Robin Rosenberg 12 years ago
parent
commit
bf33a6eeed
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java View File

@@ -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

Loading…
Cancel
Save