jixinchi commented on code in PR #188: URL: https://github.com/apache/jclouds/pull/188#discussion_r1392507202
########## 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: It is reverted now. I thought that item will be replaced if I `add` an existing item in `Set`, but actually it will be ignored. -- 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