Add another hidden number marker

This commit is contained in:
xynngh 2020-09-07 22:35:24 +04:00
parent b85e7284aa
commit 9eda98a827
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import java.util.Set;
public class NumberUtils { public class NumberUtils {
private static final Set<String> HIDDEN_NUMBERS = new HashSet<>(Arrays.asList( private static final Set<String> HIDDEN_NUMBERS = new HashSet<>(Arrays.asList(
"-1", "-2", "UNAVAILABLE", "ABSENT NUMBER", "NNN", "PRIVATE NUMBER" "-1", "-2", "UNAVAILABLE", "ABSENT NUMBER", "NNN", "PRIVATE NUMBER", "ANONYMOUS"
)); ));
public static boolean isHiddenNumber(String number) { public static boolean isHiddenNumber(String number) {