nastra commented on code in PR #10433: URL: https://github.com/apache/iceberg/pull/10433#discussion_r1726971204
########## aws/src/main/java/org/apache/iceberg/aws/s3/S3InputStream.java: ########## @@ -92,13 +93,13 @@ public void seek(long newPos) { public int read() throws IOException { Preconditions.checkState(!closed, "Cannot read: already closed"); positionStream(); - + int bytesRead = stream.read(); Review Comment: I'm guessing this is just aligning things with the other `read` method and isn't a strictly necessary change? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org