File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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 >() {
You can’t perform that action at this time.
0 commit comments