General cleanup

This commit is contained in:
Oliver Burn 2004-07-21 11:15:46 +00:00
parent ff5ffa9602
commit 889f470ea6
6 changed files with 6 additions and 18 deletions

View File

@ -120,8 +120,6 @@ class CSVFilter implements IntFilter
final CSVFilter other = (CSVFilter) aObject;
return this.mFilters.equals(other.mFilters);
}
else {
return false;
}
return false;
}
}

View File

@ -61,8 +61,6 @@ class IntMatchFilter implements IntFilter
final IntMatchFilter other = (IntMatchFilter) aObject;
return (this.mMatchValue).equals(other.mMatchValue);
}
else {
return false;
}
return false;
}
}

View File

@ -66,9 +66,7 @@ class IntRangeFilter implements IntFilter
return (this.mLowerBound.equals(other.mLowerBound)
&& this.mUpperBound.equals(other.mUpperBound));
}
else {
return false;
}
return false;
}
/** @see java.lang.Object#toString() */
public String toString()

View File

@ -68,8 +68,6 @@ public class SeverityMatchFilter
if (mAcceptOnMatch) {
return result;
}
else {
return !result;
}
return !result;
}
}

View File

@ -209,8 +209,6 @@ public class SuppressElement
// everything is the same
return true;
}
else {
return false;
}
return false;
}
}

View File

@ -74,8 +74,6 @@ public class SuppressionFilter
final SuppressionFilter other = (SuppressionFilter) aObject;
return this.mFilters.equals(other.mFilters);
}
else {
return false;
}
return false;
}
}