Skip to content

Commit

Permalink
[hotfix][formats][parquet] Fix argument references
Browse files Browse the repository at this point in the history
  • Loading branch information
jibiyr authored Mar 29, 2021
1 parent 5b3a8f3 commit 083d022
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public class ParquetRecordReader<T> {
private long numRecordsUpToCurrentBlock = 0;

public ParquetRecordReader(ReadSupport<T> readSupport, MessageType readSchema, Filter filter) {
this.filter = checkNotNull(filter, "readSupport");
this.readSupport = checkNotNull(readSupport, "readSchema");
this.readSchema = checkNotNull(readSchema, "filter");
this.filter = checkNotNull(filter, "filter");
this.readSupport = checkNotNull(readSupport, "readSupport");
this.readSchema = checkNotNull(readSchema, "readSchema");
}

public ParquetRecordReader(ReadSupport<T> readSupport, MessageType readSchema) {
Expand Down

0 comments on commit 083d022

Please sign in to comment.