polishing
This commit is contained in:
parent
fbfbb88032
commit
82fd947712
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue