DEV Community

Discussion on: How can I improve this while loop code snippet?

Collapse
 
kingo profile image
kingoftwo

char c = this.source.charAt(this.currentCharIndex);
while (!Character.isWhitespace(c)) {
char d = c;
}
}

Gave up on markdown..