Use a more conventional name for a static constant

This commit is contained in:
Jon Chambers 2024-11-22 09:47:36 -05:00 committed by Jon Chambers
parent 637e424506
commit 00c11f5dd0
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ import org.apache.commons.lang3.StringUtils;
public class Util { public class Util {
private static final RandomGenerator rng = new Random(); private static final RandomGenerator RANDOM_GENERATOR = new Random();
private static final Pattern COUNTRY_CODE_PATTERN = Pattern.compile("^\\+([17]|2[07]|3[0123469]|4[013456789]|5[12345678]|6[0123456]|8[1246]|9[0123458]|\\d{3})"); private static final Pattern COUNTRY_CODE_PATTERN = Pattern.compile("^\\+([17]|2[07]|3[0123469]|4[013456789]|5[12345678]|6[0123456]|8[1246]|9[0123458]|\\d{3})");
@ -188,7 +188,7 @@ public class Util {
return values; return values;
} }
Set<Integer> indices = new HashSet<>(rng.ints(0, values.size()).distinct().limit(n).boxed().toList()); Set<Integer> indices = new HashSet<>(RANDOM_GENERATOR.ints(0, values.size()).distinct().limit(n).boxed().toList());
List<E> result = new ArrayList<E>(n); List<E> result = new ArrayList<E>(n);
for(int i = 0; i < values.size() && result.size() < n; i++) { for(int i = 0; i < values.size() && result.size() < n; i++) {
if(indices.contains(i)) { if(indices.contains(i)) {