(char ch, String matches)
| 313 | } |
| 314 | |
| 315 | private static boolean equals(char ch, String matches) |
| 316 | { |
| 317 | for (int i = 0; i < matches.length(); ++i) |
| 318 | { |
| 319 | if (matches.charAt(i) == ch) |
| 320 | { |
| 321 | return true; |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | return false; |
| 326 | } |
| 327 | |
| 328 | public static boolean equalsTrim(String a, String b) |
| 329 | { |
no test coverage detected