src/main/java/com/spotify/sparkey/IndexHash.java [756:770]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      throw new EOFException();
    }

    @Override
    public int read(byte[] b) throws IOException {
      return read(b, 0, b.length);
    }

    @Override
    public int read(byte[] b, int off, int len) throws IOException {
      if (len < 0) {
        throw new IllegalArgumentException();
      }
      if (remaining >= len) {
        remaining -= len;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/spotify/sparkey/SparkeyLogIterator.java [273:287]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      throw new EOFException();
    }

    @Override
    public int read(byte[] b) throws IOException {
      return read(b, 0, b.length);
    }

    @Override
    public int read(byte[] b, int off, int len) throws IOException {
      if (len < 0) {
        throw new IllegalArgumentException();
      }
      if (remaining >= len) {
        remaining -= len;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



