All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cobraparser.util.io.EmptyReader Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.cobraparser.util.io;

import java.io.IOException;
import java.io.Reader;

public class EmptyReader extends Reader {
  @Override
  public void close() throws IOException {
  }

  @Override
  public int read(final char[] cbuf, final int off, final int len) throws IOException {
    return 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy