Home | History | Annotate | Download | only in io
      1 package org.jf.dexlib2.writer.io;
      2 
      3 import java.io.IOException;
      4 
      5 public interface DeferredOutputStreamFactory {
      6     DeferredOutputStream makeDeferredOutputStream() throws IOException;
      7 }
      8