Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-19193]
Pass through the offset argument provided to TimestamperOutputStream.write
  • Loading branch information
StevenGBrown committed Aug 21, 2013
1 parent 9ec1b68 commit d46408f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -187,7 +187,7 @@ public void write(byte[] b) throws IOException {
@Override
public void write(byte[] b, int off, int len) throws IOException {
writeTimestamps(b, off, len);
delegate.write(b, 0, len);
delegate.write(b, off, len);
}

private void writeTimestamps(byte[] b, int off, int len) throws IOException {
Expand Down

0 comments on commit d46408f

Please sign in to comment.