(int offset, int count)
| 149 | } |
| 150 | |
| 151 | public final String subString(int offset, int count) { |
| 152 | return text.substring(offset, offset + count); |
| 153 | } |
| 154 | |
| 155 | public final String subString(int offset) { |
| 156 | return text.substring(offset); |
no test coverage detected