(String text)
| 153 | } |
| 154 | |
| 155 | public static String substring(String text) { |
| 156 | return substring(text, 1); |
| 157 | } |
| 158 | |
| 159 | public static String substring(String text, int num) { |
| 160 | if (text != null && text.length() > num) return text.substring(0, text.length() - num); |
no outgoing calls
no test coverage detected