From 9f054e319546aa6261e844e6dbfbf3f1b0a94799 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 27 Aug 2015 14:26:23 +0200 Subject: [PATCH] =?utf8?q?use=20getFields(),=20not=20getDeclaredFields()?= =?utf8?q?=20Signed-off-by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index 7677441..25a0d3c 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -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 -- 2.39.5