(String email)
| 1077 | } |
| 1078 | |
| 1079 | static String getKey(String email) { |
| 1080 | // Maximum file name length: 255 |
| 1081 | // Maximum email address length: 320 (<local part = 64> @ <domain part = 255>) |
| 1082 | return (email.length() > 255 |
| 1083 | ? email.substring(0, 255) |
| 1084 | : email).toLowerCase(Locale.ROOT); |
| 1085 | } |
| 1086 | |
| 1087 | static Uri getLookupUri(List<Address> addresses) { |
| 1088 | return getLookupUri(addresses.toArray(new Address[0])); |
no test coverage detected