1 18 package org.apache.tools.ant.util; 19 20 import java.io.FilterOutputStream ; 21 import java.io.IOException ; 22 import java.io.OutputStream ; 23 24 38 public class KeepAliveOutputStream extends FilterOutputStream { 39 40 45 public KeepAliveOutputStream(OutputStream out) { 46 super(out); 47 } 48 49 53 public void close() throws IOException { 54 } 56 } 57 | Popular Tags |