Skip to content

Commit

Permalink
fix for comment
Browse files Browse the repository at this point in the history
Signed-off-by: yanz <[email protected]>
  • Loading branch information
dirtysalt committed Oct 12, 2024
1 parent 51701db commit 8f75e96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public List<RemoteFileInfo> getRemoteFiles(Table table, GetRemoteFilesParams par
dbName, tableName, params.getPredicate());
}

return scanTasks.stream().map(x -> new DeltaRemoteFileInfo(x)).collect(Collectors.toList());
return scanTasks.stream().map(DeltaRemoteFileInfo::new).collect(Collectors.toList());
}

@Override
Expand Down

0 comments on commit 8f75e96

Please sign in to comment.