Remove unnecessary boxing SuppressWarnings annotation

Change-Id: Id8a6d9f96860742f9094efdb4f31a952be7d3025
This commit is contained in:
Kevin Sawicki 2012-05-08 20:42:19 -07:00
parent 6f432673c1
commit e4effd25c5
1 changed files with 0 additions and 1 deletions

View File

@ -562,7 +562,6 @@ public void setLength(final int sz) {
* @param sz
* new cached size of the file, as bytes.
*/
@SuppressWarnings("boxing")
public void setLength(final long sz) {
setLength((int) sz);
}