Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed Feb 20, 2024
1 parent d987a06 commit d4da175
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Used to generate a combined _metadata and _common_metadata file for provided Parquet files.
*/
public final class ParquetMetadataFileWriterImpl implements ParquetMetadataFileWriter {
final class ParquetMetadataFileWriterImpl implements ParquetMetadataFileWriter {

/**
* A class to hold the parquet file and its metadata.
Expand All @@ -49,7 +49,7 @@ private static class ParquetFileMetadata {
private final SeekableChannelsProvider channelsProvider;
private List<ColumnTypeInfo> columnTypes; // Useful when merging deephaven specific metadata

public ParquetMetadataFileWriterImpl(final String metadataRootDir, final File[] destinations) {
ParquetMetadataFileWriterImpl(final String metadataRootDir, final File[] destinations) {
for (final File destination : destinations) {
if (!destination.getAbsolutePath().startsWith(metadataRootDir)) {
throw new UncheckedDeephavenException("All destinations must be contained in the provided metadata root"
Expand Down

0 comments on commit d4da175

Please sign in to comment.