1 package javagroup.util; 2 3 import java.io.InputStream; 4 5 public class NullInputStream extends InputStream { 6 7 public int read() { 8 return -1; 9 } 10 11 } 12 13