Skip to content

Commit

Permalink
fix #580 (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudroger authored and cowtowncoder committed Nov 22, 2019
1 parent 213b5cb commit 4b7e99c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -505,23 +505,23 @@ public void writeRaw(char c) throws IOException
public void writeRawValue(String text) throws IOException
{
if (_checkRawValueWrite()) {
delegate.writeRaw(text);
delegate.writeRawValue(text);
}
}

@Override
public void writeRawValue(String text, int offset, int len) throws IOException
{
if (_checkRawValueWrite()) {
delegate.writeRaw(text, offset, len);
delegate.writeRawValue(text, offset, len);
}
}

@Override
public void writeRawValue(char[] text, int offset, int len) throws IOException
{
if (_checkRawValueWrite()) {
delegate.writeRaw(text, offset, len);
delegate.writeRawValue(text, offset, len);
}
}

Expand Down

0 comments on commit 4b7e99c

Please sign in to comment.