From 79efcdac2a39ebd854810a65b2ed6f5735706461 Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Tue, 15 Sep 2009 05:55:14 +0000 Subject: [PATCH] Merging from -r468106:814127 of collections_jdk5_branch - namely where this code was generified; mostly in r738956. Also see the following revisions: ------------------------------------------------------------------------ r641231 | skestle | 2008-03-26 02:58:51 -0700 (Wed, 26 Mar 2008) | 1 line Started incorporating Edwin's patch for COLLECTIONS-253, in preparation for COLLECTIONS-290. ------------------------------------------------------------------------ git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815052 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/collections/functors/PredicateDecorator.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/collections/functors/PredicateDecorator.java b/src/java/org/apache/commons/collections/functors/PredicateDecorator.java index c4867dc13..00ea158a2 100644 --- a/src/java/org/apache/commons/collections/functors/PredicateDecorator.java +++ b/src/java/org/apache/commons/collections/functors/PredicateDecorator.java @@ -27,8 +27,9 @@ import org.apache.commons.collections.Predicate; * @version $Revision$ $Date$ * * @author Stephen Colebourne + * @author Stephen Kestle */ -public interface PredicateDecorator extends Predicate { +public interface PredicateDecorator extends Predicate { /** * Gets the predicates being decorated as an array. @@ -38,6 +39,6 @@ public interface PredicateDecorator extends Predicate { * * @return the predicates being decorated */ - Predicate[] getPredicates(); + Predicate[] getPredicates(); }