Polishing

This commit is contained in:
Juergen Hoeller
2016-03-25 23:46:18 +01:00
parent 94cb7786c8
commit c6ff0951fc
4 changed files with 10 additions and 10 deletions

View File

@@ -406,13 +406,11 @@ public abstract class CacheAspectSupport extends AbstractCacheInvoker
}
}
catch (VariableNotAvailableException e) {
// Ignoring failure due to missing result, consider the cache put has
// to proceed
// Ignoring failure due to missing result, consider the cache put has to proceed
}
}
// check if all puts have been excluded by condition
return cachePutContexts.size() != excluded.size();
// Check if all puts have been excluded by condition
return (cachePutContexts.size() != excluded.size());
}
private void processCacheEvicts(Collection<CacheOperationContext> contexts, boolean beforeInvocation, Object result) {