添加流IP单独配置
This commit is contained in:
@@ -24,7 +24,6 @@ import org.slf4j.LoggerFactory;
|
||||
*/
|
||||
public class AckRequestProcessor extends SIPRequestAbstractProcessor {
|
||||
|
||||
|
||||
private Logger logger = LoggerFactory.getLogger(AckRequestProcessor.class);
|
||||
|
||||
private IRedisCatchStorage redisCatchStorage;
|
||||
|
||||
@@ -20,10 +20,10 @@ public class NumericUtil {
|
||||
public static boolean isDouble(String str) {
|
||||
try {
|
||||
Double num2 = Double.valueOf(str);
|
||||
logger.debug(num2 + " is a valid numeric string!");
|
||||
// logger.debug(num2 + " is a valid numeric string!");
|
||||
return true;
|
||||
} catch (Exception e) {
|
||||
logger.debug(str + " is an invalid numeric string!");
|
||||
// logger.debug(str + " is an invalid numeric string!");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -36,10 +36,10 @@ public class NumericUtil {
|
||||
public static boolean isInteger(String str) {
|
||||
try {
|
||||
int num2 = Integer.valueOf(str);
|
||||
logger.debug(num2 + " is an integer!");
|
||||
// logger.debug(num2 + " is an integer!");
|
||||
return true;
|
||||
} catch (Exception e) {
|
||||
logger.debug(str + " is not an integer!");
|
||||
// logger.debug(str + " is not an integer!");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user