提交 d3fec012 编写于 作者: T terrymanu

for checkstyle

上级 a5b3e9c6
...@@ -102,9 +102,9 @@ public final class DataSourceConfiguration { ...@@ -102,9 +102,9 @@ public final class DataSourceConfiguration {
return result; return result;
} }
private static Collection<Method> findAllGetterMethods(final Class<?> clz) { private static Collection<Method> findAllGetterMethods(final Class<?> clazz) {
Collection<Method> result = new HashSet<>(); Collection<Method> result = new HashSet<>();
for (Method each : clz.getMethods()) { for (Method each : clazz.getMethods()) {
if (each.getName().startsWith(GETTER_PREFIX) && 0 == each.getParameterTypes().length) { if (each.getName().startsWith(GETTER_PREFIX) && 0 == each.getParameterTypes().length) {
result.add(each); result.add(each);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册