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();