mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 11:35:11 -05:00
Avoid type-unsafe Set
This commit is contained in:
parent
451ffc97c4
commit
5b9f542bd7
@ -81,7 +81,7 @@ public class LocalStore extends Store implements Serializable {
|
||||
|
||||
private static final Set<String> HEADERS_TO_SAVE;
|
||||
static {
|
||||
Set<String> set = new HashSet();
|
||||
Set<String> set = new HashSet<String>();
|
||||
set.add(K9.IDENTITY_HEADER);
|
||||
set.add("To");
|
||||
set.add("Cc");
|
||||
|
Loading…
Reference in New Issue
Block a user