Skip to content

Commit

Permalink
Formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengJie1053 committed Dec 11, 2023
1 parent 14a9601 commit 4efe060
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,9 +404,9 @@ public Message getDirFileTrees(
FsPathListWithError fsPathListWithError = fileSystem.listPathWithError(fsPath);
if (fsPathListWithError != null) {
for (FsPath children : fsPathListWithError.getFsPaths()) {
// 兼容parquet和orc,跳过.crc文件
if (children.getPath().endsWith(".crc")) {
continue;
// 兼容parquet和orc,跳过.crc文件
if (children.getPath().endsWith(".crc")) {
continue;
}
DirFileTree dirFileTreeChildren = new DirFileTree();
dirFileTreeChildren.setName(new File(children.getPath()).getName());
Expand Down

0 comments on commit 4efe060

Please sign in to comment.