mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Merge pull request #64 from andrewgaul/typesafe-set
Avoid type-unsafe Set
This commit is contained in:
commit
ae3f098b4a
@ -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