MCPcopy Create free account
hub / github.com/ReadyTalk/avian / read

Method read

classpath/java/io/LineNumberReader.java:32–40  ·  view source on GitHub ↗
(char[] b, int offset, int length)

Source from the content-addressed store, hash-verified

30 }
31
32 public int read(char[] b, int offset, int length) throws IOException {
33 int c = super.read(b, offset, length);
34 for (int i = 0; i < c; ++i) {
35 if (b[i] == '\n') {
36 ++ line;
37 }
38 }
39 return c;
40 }
41}

Callers

nothing calls this directly

Calls 1

readMethod · 0.65

Tested by

no test coverage detected