Skip to content

Commit d09ed92

Browse files
committed
Fixed indentation
1 parent e7bce9f commit d09ed92

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -307,15 +307,15 @@ public boolean apply(@Nullable final Contents input) {
307307

308308
for (final Predicate<Contents> filter : filters) {
309309
fluentIterable = fluentIterable.filter(new com.google.common.base.Predicate<Contents>() {
310-
@Override
311-
public boolean apply(@Nullable final Contents input) {
312-
if (filter != null) {
313-
return filter.test(input);
314-
} else {
315-
return true; // do not filter anything if filter is null
310+
@Override
311+
public boolean apply(@Nullable final Contents input) {
312+
if (filter != null) {
313+
return filter.test(input);
314+
} else {
315+
return true; // do not filter anything if filter is null
316+
}
316317
}
317-
}
318-
});
318+
});
319319
}
320320

321321
return fluentIterable.transform(new Function<Contents, Ds3Object>() {

0 commit comments

Comments
 (0)