Skip to content

Commit

Permalink
Remove redundant syntax and whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 12, 2024
1 parent 519f176 commit 41cb443
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ protected void processUpdate( final ICacheElement<K, V> element )
private void removeIfLimitIsSetAndReached()
{
// TODO we might want to synchronize this block.
if ( (diskFileCacheAttributes.getMaxNumberOfFiles() > 0) && (getSize() >= diskFileCacheAttributes.getMaxNumberOfFiles()) )
if ( diskFileCacheAttributes.getMaxNumberOfFiles() > 0 && getSize() >= diskFileCacheAttributes.getMaxNumberOfFiles() )
{
if ( log.isDebugEnabled() )
{
Expand Down

0 comments on commit 41cb443

Please sign in to comment.