(String source, String key)
| 43 | } |
| 44 | |
| 45 | public static boolean contains(String source, String key) { |
| 46 | if (noEmpty(source)) { |
| 47 | return source.contains(key); |
| 48 | } |
| 49 | return false; |
| 50 | } |
| 51 | |
| 52 | public static CharSequence trim(CharSequence cs) { |
| 53 | int len = cs.length(); |
no test coverage detected