Move system contact interactions into their own module.

This commit is contained in:
Greyson Parrelli
2022-03-24 12:47:27 -04:00
parent fd930d0b1d
commit dddf830e47
52 changed files with 1924 additions and 1640 deletions

View File

@@ -106,7 +106,7 @@ public class PhoneNumberFormatter {
}
public String format(@Nullable String number) {
public @NonNull String format(@Nullable String number) {
if (number == null) return "Unknown";
if (GroupId.isEncodedGroup(number)) return number;
if (ALPHA_PATTERN.matcher(number).find()) return number.trim();