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

org.snapscript.core.type.extend.WriterExtension Maven / Gradle / Ivy

package org.snapscript.core.type.extend;

import java.io.BufferedWriter;
import java.io.IOException;
import java.io.Writer;

public class WriterExtension {

   public WriterExtension() {
      super();
   }
   
   public Writer buffer(Writer writer, int size) throws IOException {
      return new BufferedWriter(writer, size);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy