Skip to content

Commit 43ad397

Browse files
committed
Merge branch 'release/2.0.3'
2 parents dc7bd1c + f7225a1 commit 43ad397

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# com.bitctrl
55
Allgemeine Bibliothek für BitCtrl-Projekte
66

7+
## Version 2.0.3
8+
79
## Version 2.0.2
810
- Die PropertyDescriptoren einer Bean werden nicht mehr gecached
911
In Umgebungen mit mehreren Sprachen, können sich einzelne Attribute, wie

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.bitctrl</groupId>
77
<artifactId>com.bitctrl</artifactId>
8-
<version>2.0.2</version>
8+
<version>2.0.3</version>
99

1010
<name>Allgemeine BitCtrl-Bibliothek</name>
1111
<url>http://bitctrl.github.io/${project.artifactId}/</url>

src/main/java/com/bitctrl/beans/AbstractBeanInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ private String getWriteMethodName(Class<?> beanClass, String propName) {
146146

147147
String name = "set" + propName;
148148

149-
Method[] declaredMethods = beanClass.getDeclaredMethods();
150-
for ( Method method : declaredMethods) {
149+
Method[] methods = beanClass.getMethods();
150+
for ( Method method : methods) {
151151
if( name.equals(method.getName())) {
152152
return name;
153153
}

0 commit comments

Comments
 (0)