private OutputStream myDst;
private ByteBuffer mySrcBuffer;
private ByteBuffer myDstBuffer;
public SVNTranslatorOutputStream(OutputStream dst, byte[] eol, boolean repair, Map keywords, boolean expand) {
mySubstitutor = new SVNSubstitutor(eol, repair, keywords, expand);
myDst = dst;
mySrcBuffer = ByteBuffer.allocate(2048);
myDstBuffer = ByteBuffer.allocate(2048);
}