(String s)
| 225 | } |
| 226 | |
| 227 | private static String trim(String s) { |
| 228 | if (s == null) { |
| 229 | return null; |
| 230 | } |
| 231 | String result = s.trim(); |
| 232 | return result.length() == 0 ? null : result; |
| 233 | } |
| 234 | |
| 235 | private static String escapeMECARD(String input) { |
| 236 | if (input == null || (input.indexOf(':') < 0 && input.indexOf(';') < 0)) { |
no outgoing calls
no test coverage detected