MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / skip

Method skip

src/org/kxml2/io/KXmlParser.java:931–939  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

929 }
930
931 private final void skip() throws IOException {
932
933 while (true) {
934 int c = peek(0);
935 if (c > ' ' || c == -1)
936 break;
937 read();
938 }
939 }
940
941 // public part starts here...
942

Callers 2

parseEndTagMethod · 0.95
parseStartTagMethod · 0.95

Calls 2

peekMethod · 0.95
readMethod · 0.95

Tested by

no test coverage detected