MCPcopy Index your code
hub / github.com/processing/processing / nextClean

Method nextClean

core/src/processing/data/JSONTokener.java:229–236  ·  view source on GitHub ↗

Get the next char in the string, skipping whitespace. @throws JSONException @return A character, or 0 if there are no more characters.

()

Source from the content-addressed store, hash-verified

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 /**

Callers 3

nextValueMethod · 0.95
JSONArrayMethod · 0.80
JSONObjectMethod · 0.80

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected