(String text)
| 50 | } |
| 51 | |
| 52 | public static String substring(String text) { |
| 53 | return substring(text, 1); |
| 54 | } |
| 55 | |
| 56 | public static String substring(String text, int num) { |
| 57 | if (text != null && text.length() > num) { |
no outgoing calls
no test coverage detected