mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-02 08:35:08 -04:00
Merge pull request #78 from andrewgaul/findbugs-boxing
Prefer Integer.valueOf over explicit boxing
This commit is contained in:
commit
aa19f6c619
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user