Skip to content

Commit c07a41a

Browse files
committed
Removing some comments that are no longer needed
1 parent f997f20 commit c07a41a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ public abstract Iterable<Contents> listObjects(final String bucket, final String
288288
* The response might contain fewer keys but will never contain more. If there are additional keys
289289
* that satisfy the search criteria but were not returned because max-keys was exceeded, the
290290
* response.isTruncated() is true. To return the additional keys, see nextMarker.
291-
* @throws IOException
292291
*/
293292
public abstract Iterable<Contents> listObjects(final String bucket, final String keyPrefix, final String nextMarker, final int maxKeys);
294293

@@ -309,7 +308,6 @@ public abstract Iterable<Contents> listObjects(final String bucket, final String
309308
* that satisfy the search criteria but were not returned because max-keys was exceeded, the
310309
* response.isTruncated() is true. To return the additional keys, see nextMarker.
311310
* @param retries Specifies how many times the helper function will attempt to retry a request for failing. Default - 5
312-
* @throws IOException
313311
*/
314312
public abstract Iterable<Contents> listObjects(final String bucket, final String keyPrefix, final String nextMarker, final int maxKeys, final int retries);
315313

@@ -331,11 +329,11 @@ public abstract Iterable<Contents> listObjects(final String bucket, final String
331329
*/
332330
public abstract Iterable<Ds3Object> removePrefixFromDs3ObjectsList(final Iterable<Ds3Object> objectsList, final String prefix);
333331

334-
@SafeVarargs
335332
/**
336333
* Converts an {@link Contents} to a {@link Ds3Object}. Optionally a caller can supply many filters
337334
* that will be applied before converting.
338335
*/
336+
@SafeVarargs
339337
public final Iterable<Ds3Object> toDs3Iterable(final Iterable<Contents> objects, final Predicate<Contents>... filters) {
340338

341339
FluentIterable<Contents> fluentIterable = FluentIterable.from(objects).filter(new com.google.common.base.Predicate<Contents>() {

0 commit comments

Comments
 (0)