This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new 0c380a1 fix: clippy (#694)
0c380a1 is described below
commit 0c380a13612a1c3d91aa9b2c263422b3049858c0
Author: Marco Neumann <[email protected]>
AuthorDate: Thu Apr 23 22:24:21 2026 +0200
fix: clippy (#694)
---
src/client/list.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/client/list.rs b/src/client/list.rs
index 6ad87db..c212318 100644
--- a/src/client/list.rs
+++ b/src/client/list.rs
@@ -117,8 +117,8 @@ impl<T: ListClient + Clone> ListClientExt for T {
while let Some(result) = stream.next().await {
let response = result?;
- common_prefixes.extend(response.common_prefixes.into_iter());
- objects.extend(response.objects.into_iter());
+ common_prefixes.extend(response.common_prefixes);
+ objects.extend(response.objects);
}
Ok(ListResult {