]> git.mxchange.org Git - jcore.git/commitdiff
use getFields(), not getDeclaredFields()
authorRoland Haeder <roland@mxchange.org>
Thu, 27 Aug 2015 12:26:23 +0000 (14:26 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 27 Aug 2015 12:26:23 +0000 (14:26 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/BaseFrameworkSystem.java

index 7677441e843cfd34c919784c007e6b0ee0eeb5c6..25a0d3c30ce5556e7ce52bd8173f28c8bcbcff9c 100644 (file)
@@ -1192,7 +1192,7 @@ public class BaseFrameworkSystem implements FrameworkInterface {
                Class<?> type = null;
 
                // Get all attributes from given instance
-               Field[] fields = this.getClassFromTarget(instance, targetClass).getDeclaredFields();
+               Field[] fields = this.getClassFromTarget(instance, targetClass).getFields();
 
                // Debug message
                this.getLogger().debug(MessageFormat.format("fields()={0}", fields.length)); //NOI18N