Formating of redundant else statements

This commit is contained in:
Oliver Burn 2004-05-24 10:46:26 +00:00
parent 9423bd2f1d
commit e9bdc54e42
1 changed files with 1 additions and 3 deletions

View File

@ -80,9 +80,7 @@ public class FilterSet
final FilterSet other = (FilterSet) aObject;
return this.mFilters.equals(other.mFilters);
}
else {
return false;
}
return false;
}
/** @see com.puppycrawl.tools.checkstyle.api.Filter */