1
This commit is contained in:
@@ -303,9 +303,11 @@ public class InstructionServiceImpl implements IInstructionService {
|
|||||||
if (matcher.find()) {
|
if (matcher.find()) {
|
||||||
address = new StringBuilder(matcher.group());
|
address = new StringBuilder(matcher.group());
|
||||||
}
|
}
|
||||||
String phone;
|
String phone = parts[3];
|
||||||
//从phoneWithTF随机拿一个出来
|
//从phoneWithTF随机拿一个出来
|
||||||
phone = phoneWithTF.get(new Random().nextInt(phoneWithTF.size()));
|
if ("13243039070".equals(phone)){
|
||||||
|
phone = phoneWithTF.get(new Random().nextInt(phoneWithTF.size()));
|
||||||
|
}
|
||||||
address.append(phone);
|
address.append(phone);
|
||||||
System.out.println(address);
|
System.out.println(address);
|
||||||
for (int i = 4; i < parts.length; i++) {
|
for (int i = 4; i < parts.length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user