优化后台业务
This commit is contained in:
+1
-1
@@ -212,7 +212,7 @@ public boolean isIpWhitelistError(BusinessException ex) {
|
||||
if (value == null) {
|
||||
return "";
|
||||
}
|
||||
return value.replace("\u3000", " ")
|
||||
return value.replace((char) 0x3000, ' ')
|
||||
.trim();
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -357,7 +357,7 @@ public class ZiniaoShopIndexService {
|
||||
if (value == null) {
|
||||
return "";
|
||||
}
|
||||
return value.replace("\u3000", " ").trim();
|
||||
return value.replace((char) 0x3000, ' ').trim();
|
||||
}
|
||||
|
||||
private ZiniaoShopMatchResultVo pendingResult(String message) {
|
||||
|
||||
Reference in New Issue
Block a user