MCPcopy Create free account
hub / github.com/Gagravarr/VorbisJava / readOrEOF

Method readOrEOF

core/src/main/java/org/gagravarr/ogg/IOUtils.java:65–69  ·  view source on GitHub ↗
(InputStream stream)

Source from the content-addressed store, hash-verified

63
64
65 public static int readOrEOF(InputStream stream) throws IOException {
66 int data = stream.read();
67 if (data == -1) throw new EOFException("No data remains");
68 return data;
69 }
70
71
72 public static int getInt2(byte[] data) {

Callers 1

OggPageMethod · 0.80

Calls 1

readMethod · 0.45

Tested by

no test coverage detected