Prefer Integer.valueOf over explicit boxing

Addresses a FindBugs complaint.
This commit is contained in:
Andrew Gaul 2011-10-31 21:58:00 -07:00
parent c26ad2c4fd
commit 773f2e8870
1 changed files with 1 additions and 1 deletions

View File

@ -2982,7 +2982,7 @@ public class ImapStore extends Store {
message.parse(literal);
// Return placeholder object
return new Integer(1);
return Integer.valueOf(1);
}
return null;
}