Skip to content

Commit 708f615

Browse files
committed
Fixup Code Quality
1 parent afbeca8 commit 708f615

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/s3fs.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,8 @@ void S3FileSystem::RemoveFiles(const vector<string> &paths, optional_ptr<FileOpe
11431143

11441144
void S3FileSystem::RemoveDirectory(const string &path, optional_ptr<FileOpener> opener) {
11451145
vector<string> files_to_remove;
1146-
ListFiles(path, [&](const string &file, bool is_dir) { files_to_remove.push_back(file); }, opener.get());
1146+
ListFiles(
1147+
path, [&](const string &file, bool is_dir) { files_to_remove.push_back(file); }, opener.get());
11471148

11481149
RemoveFiles(files_to_remove, opener);
11491150
}

0 commit comments

Comments
 (0)