(String text)
| 101 | } |
| 102 | |
| 103 | public static String substring(String text) { |
| 104 | return substring(text, 1); |
| 105 | } |
| 106 | |
| 107 | public static String substring(String text, int num) { |
| 108 | if (text != null && text.length() > num) return text.substring(0, text.length() - num); |
no outgoing calls
no test coverage detected