mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Prefer Integer.valueOf over explicit boxing
Addresses a FindBugs complaint.
This commit is contained in:
parent
c26ad2c4fd
commit
773f2e8870
@ -2982,7 +2982,7 @@ public class ImapStore extends Store {
|
|||||||
message.parse(literal);
|
message.parse(literal);
|
||||||
|
|
||||||
// Return placeholder object
|
// Return placeholder object
|
||||||
return new Integer(1);
|
return Integer.valueOf(1);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user