polishing

This commit is contained in:
Juergen Hoeller 2009-03-27 17:41:03 +00:00
parent fbfbb88032
commit 82fd947712
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2008 the original author or authors. * Copyright 2002-2009 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -210,7 +210,7 @@ public abstract class BeanUtils {
Method targetMethod = doFindMethodWithMinimalParameters(clazz.getDeclaredMethods(), methodName); Method targetMethod = doFindMethodWithMinimalParameters(clazz.getDeclaredMethods(), methodName);
if (targetMethod == null) { if (targetMethod == null) {
return findDeclaredMethodWithMinimalParameters(clazz, methodName); targetMethod = findDeclaredMethodWithMinimalParameters(clazz, methodName);
} }
return targetMethod; return targetMethod;
} }
@ -232,7 +232,7 @@ public abstract class BeanUtils {
Method targetMethod = doFindMethodWithMinimalParameters(clazz.getDeclaredMethods(), methodName); Method targetMethod = doFindMethodWithMinimalParameters(clazz.getDeclaredMethods(), methodName);
if (targetMethod == null && clazz.getSuperclass() != null) { if (targetMethod == null && clazz.getSuperclass() != null) {
return findDeclaredMethodWithMinimalParameters(clazz.getSuperclass(), methodName); targetMethod = findDeclaredMethodWithMinimalParameters(clazz.getSuperclass(), methodName);
} }
return targetMethod; return targetMethod;
} }

View File

@ -66,6 +66,7 @@ public class ClassPathBeanDefinitionScanner extends ClassPathScanningCandidateCo
private boolean includeAnnotationConfig = true; private boolean includeAnnotationConfig = true;
/** /**
* Create a new ClassPathBeanDefinitionScanner for the given bean factory. * Create a new ClassPathBeanDefinitionScanner for the given bean factory.
* @param registry the BeanFactory to load bean definitions into, * @param registry the BeanFactory to load bean definitions into,