From 048d54121e87bcba13a54db78f562f7cd73aedea Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Fri, 12 Nov 2010 17:33:34 -0500 Subject: [PATCH] AnnotationFinder is now abstract --- .../springframework/integration/config/AnnotationFinder.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/config/AnnotationFinder.java b/spring-integration-core/src/main/java/org/springframework/integration/config/AnnotationFinder.java index 635653f2c8..934d119dbd 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/config/AnnotationFinder.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/config/AnnotationFinder.java @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.integration.config; import java.lang.annotation.Annotation; @@ -30,7 +31,7 @@ import org.springframework.util.ReflectionUtils.MethodCallback; * @author Dave Syer * */ -class AnnotationFinder { +abstract class AnnotationFinder { public static Method findAnnotatedMethod(Object target, final Class annotationType) { final AtomicReference reference = new AtomicReference();