Skip to content

Commit b3a9014

Browse files
committed
Removed unused constructor.
1 parent d8264af commit b3a9014

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoaderFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ public class GetBucketKeyLoaderFactory<T> implements LazyIterable.LazyLoaderFact
3030
public static final Function<ListBucketResult, Iterable<Contents>> contentsFunction = new Function<ListBucketResult, Iterable<Contents>>() {
3131
@Override
3232
public Iterable<Contents> apply(@Nullable final ListBucketResult input) {
33-
34-
return FluentIterable.from(input.getObjects());
33+
return input.getObjects();
3534
}
3635
};
3736

0 commit comments

Comments
 (0)