gaul commented on code in PR #188: URL: https://github.com/apache/jclouds/pull/188#discussion_r1392491424
########## blobstore/src/main/java/org/jclouds/blobstore/config/LocalBlobStore.java: ########## @@ -364,7 +364,9 @@ private SortedSet<StorageMetadata> extractCommonPrefixes(SortedSet<StorageMetada o = prefix + o; } md.setName(o + delimiter); - contents.add(md); + if (!contents.contains(md)) { + contents.add(md); + } Review Comment: `contents` is a `Set` so this is the same as before. Could you revert it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@jclouds.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org