Skip to content

Commit

Permalink
R Removed unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
jimm98y committed May 21, 2023
1 parent 111be7a commit 57ba332
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ public void getBox(ByteStream writableByteChannel)

foreach (StreamingSample streamingSample in samples)
{
writableByteChannel.write((ByteBuffer)((Java.Buffer)streamingSample.getContent()).rewind());
writableByteChannel.write((ByteBuffer)streamingSample.getContent().rewind());
}
}
}
Expand Down

0 comments on commit 57ba332

Please sign in to comment.