1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 09:52:16 -05:00

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

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;
}