Skip to content

Commit

Permalink
Remove unused method from ParquetDataSource
Browse files Browse the repository at this point in the history
  • Loading branch information
dain committed Sep 12, 2020
1 parent 66d0a2e commit cd6faef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ public final void readFully(long position, byte[] buffer)
readFully(position, buffer, 0, buffer.length);
}

@Override
public final void readFully(long position, byte[] buffer, int bufferOffset, int bufferLength)
private void readFully(long position, byte[] buffer, int bufferOffset, int bufferLength)
{
readBytes += bufferLength;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public interface ParquetDataSource

void readFully(long position, byte[] buffer);

void readFully(long position, byte[] buffer, int bufferOffset, int bufferLength);

<K> Map<K, ChunkReader> planRead(Map<K, DiskRange> diskRanges);

@Override
Expand Down

0 comments on commit cd6faef

Please sign in to comment.