Remove unnecessary @SupressWarnings.

This commit is contained in:
eujung kim 2014-08-18 17:03:03 +09:00
parent f1517f03ff
commit c315adf72d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class CompoundComparator<T> implements Comparator<T>, Serializable {
* @param comparators the comparators to build into a compound comparator
* @see InvertibleComparator
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
@SuppressWarnings("unchecked")
public CompoundComparator(Comparator... comparators) {
Assert.notNull(comparators, "Comparators must not be null");
this.comparators = new ArrayList<InvertibleComparator>(comparators.length);