Skip to content

Commit

Permalink
Resolving more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed Jul 18, 2024
1 parent ce80674 commit 9daa786
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,13 @@ public static String getPerFileMetadataKey(final String filePath) {

/**
* This method verifies if the source points to a parquet file. Provided source can be a local file path or a URI.
* Also, it can point to a parquet file, metadata file or a directory.
*/
public static boolean isParquetFile(@NotNull final String source) {
return source.endsWith(PARQUET_FILE_EXTENSION);
}

/**
* This method verifies if the source points to a metadata file. Provided source can be a local file path or a URI.
* Also, it can point to a parquet file, metadata file or a directory.
*/
public static boolean isMetadataFile(@NotNull final String source) {
if (source.endsWith(METADATA_FILE_URI_SUFFIX) || source.endsWith(COMMON_METADATA_FILE_URI_SUFFIX)) {
Expand Down

0 comments on commit 9daa786

Please sign in to comment.