Commit cf8aac3113bddcbdeb0953f6358955d66110762a
1 parent
b09a65e0cc
Exists in
master
and in
1 other branch
commit
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/CollectionUtils.java
View file @
cf8aac3
| 1 | 1 | package com.lyms.platform.operate.web.utils; |
| 2 | 2 | |
| 3 | -import org.eclipse.jetty.util.StringUtil; | |
| 3 | +import org.apache.commons.lang.StringUtils; | |
| 4 | 4 | import org.springframework.util.Assert; |
| 5 | 5 | |
| 6 | 6 | import java.util.*; |
| ... | ... | @@ -21,7 +21,7 @@ |
| 21 | 21 | for (int i = 0; i < args.length; i++) { |
| 22 | 22 | String key = args[i++].toString(); |
| 23 | 23 | Object value = args[i]; |
| 24 | - if(value != null && StringUtil.isNotBlank(value.toString())) { | |
| 24 | + if(value != null && StringUtils.isNotBlank(value.toString())) { | |
| 25 | 25 | map.put(key, value); |
| 26 | 26 | } |
| 27 | 27 | } |