MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / skipWhitespace

Method skipWhitespace

src/main/java/core/org/xbill/DNS/Tokenizer.java:203–216  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

201}
202
203private int
204skipWhitespace() throws IOException {
205 int skipped = 0;
206 while (true) {
207 int c = getChar();
208 if (c != ' ' && c != '\t') {
209 if (!(c == '\n' && multiline > 0)) {
210 ungetChar(c);
211 return skipped;
212 }
213 }
214 skipped++;
215 }
216}
217
218private void
219checkUnbalancedParens() throws TextParseException {

Callers 1

getMethod · 0.95

Calls 2

getCharMethod · 0.95
ungetCharMethod · 0.95

Tested by

no test coverage detected