Get the next char in the string, skipping whitespace. @throws JSONException @return A character, or 0 if there are no more characters.
()
| 227 | * @return A character, or 0 if there are no more characters. |
| 228 | */ |
| 229 | public char nextClean() { |
| 230 | for (;;) { |
| 231 | char c = this.next(); |
| 232 | if (c == 0 || c > ' ') { |
| 233 | return c; |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | |
| 239 | /** |
no test coverage detected