Unnecessary semicolons.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131301 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-10-29 23:21:39 +00:00
parent eda112cfac
commit 2e53e15a14
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/PredicateUtils.java,v 1.9 2003/08/31 17:26:44 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/PredicateUtils.java,v 1.10 2003/10/29 23:21:39 ggregory Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -88,7 +88,7 @@ import java.util.Set;
* All the supplied predicates are Serializable.
*
* @since Commons Collections 3.0
* @version $Revision: 1.9 $ $Date: 2003/08/31 17:26:44 $
* @version $Revision: 1.10 $ $Date: 2003/10/29 23:21:39 $
*
* @author Stephen Colebourne
* @author Ola Berg
@ -919,7 +919,7 @@ public class PredicateUtils {
}
return iPredicate.evaluate(object);
}
};
}
// NullIsFalsePredicate
//----------------------------------------------------------------------------------
@ -948,7 +948,7 @@ public class PredicateUtils {
}
return iPredicate.evaluate(object);
}
};
}
// NullIsTruePredicate
//----------------------------------------------------------------------------------
@ -977,6 +977,6 @@ public class PredicateUtils {
}
return iPredicate.evaluate(object);
}
};
}
}