Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paliwalashish committed Oct 9, 2023
1 parent d431925 commit 79dd5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/core/src/java/org/apache/orc/impl/IOUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static long skip(final InputStream input, final long toSkip) throws IOExc
/*
* N.B. no need to synchronize access to SKIP_BYTE_BUFFER: - we don't care if the buffer is created multiple
* times (the data is ignored) - we always use the same size buffer, so if it is recreated it will still be
* OK (if the buffer size were variable, we would need to synch. to ensure some other thread did not create a
* OK (if the buffer size were variable, we would need to sync to ensure some other thread did not create a
* smaller one)
*/
long remain = toSkip;
Expand Down

0 comments on commit 79dd5bc

Please sign in to comment.