Skip to content

Commit

Permalink
Apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
ajantha-bhat committed Jan 24, 2025
1 parent 36063d6 commit f3d9245
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public class InternalReader<T extends StructLike> extends BaseParquetReaders<T>
private InternalReader() {}

@SuppressWarnings("unchecked")
public static <T extends StructLike> ParquetValueReader<T> create(Schema expectedSchema, MessageType fileSchema) {
public static <T extends StructLike> ParquetValueReader<T> create(
Schema expectedSchema, MessageType fileSchema) {
return (ParquetValueReader<T>) INSTANCE.createReader(expectedSchema, fileSchema);
}

Expand All @@ -52,7 +53,8 @@ public static <T extends StructLike> ParquetValueReader<T> create(
@SuppressWarnings("unchecked")
protected ParquetValueReader<T> createStructReader(
List<Type> types, List<ParquetValueReader<?>> fieldReaders, StructType structType) {
return (ParquetValueReader<T>) ParquetValueReaders.recordReader(types, fieldReaders, structType);
return (ParquetValueReader<T>)
ParquetValueReaders.recordReader(types, fieldReaders, structType);
}

@Override
Expand Down

0 comments on commit f3d9245

Please sign in to comment.