Skip to content

Commit

Permalink
Review with Devin
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed Feb 12, 2025
1 parent 4b24a7c commit bff92cb
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,7 @@ public boolean exists(@NotNull final URI uri) {
@Override
public SeekableByteChannel getReadChannel(
@NotNull final SeekableChannelContext channelContext,
@NotNull URI uri) {
if (uri.getScheme().equals("s3a")) {
uri = URI.create("s3://" + uri.getAuthority() + uri.getPath());
}
@NotNull final URI uri) {
final S3Uri s3Uri = s3AsyncClient.utilities().parseUri(uri);
// context is unused here, will be set before reading from the channel
final long cachedSize = getCachedSize(uri);
Expand Down

0 comments on commit bff92cb

Please sign in to comment.