Returns the current character. @return current character
()
| 47 | * @return current character |
| 48 | */ |
| 49 | public final int current() { |
| 50 | final int i = pos; |
| 51 | return i < length ? input[i] : 0; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Checks if the current character equals the specified one. |
no outgoing calls
no test coverage detected