diff options
author | burdziak <olaf.burdziakowski@nokia.com> | 2018-01-30 15:46:10 +0100 |
---|---|---|
committer | burdziak <olaf.burdziakowski@nokia.com> | 2018-01-30 15:46:10 +0100 |
commit | 039049152c783c36d63d20e7ca4fd52992fe43f4 (patch) | |
tree | 19419ff79134dd5a1fa13a00cb8f3ea60f5e5371 | |
parent | 6b98bb3ec93a0bbfbe0e660cabc69978b53bfee8 (diff) |
Fixes in Introspector
Change-Id: Ic042ad232df1553984d51d3837b36bb886a316fd
Issue-ID: AAI-709
Signed-off-by: burdziak <olaf.burdziakowski@nokia.com>
-rw-r--r-- | aai-core/src/main/java/org/onap/aai/introspection/Introspector.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aai-core/src/main/java/org/onap/aai/introspection/Introspector.java b/aai-core/src/main/java/org/onap/aai/introspection/Introspector.java index fa8be863..16680a84 100644 --- a/aai-core/src/main/java/org/onap/aai/introspection/Introspector.java +++ b/aai-core/src/main/java/org/onap/aai/introspection/Introspector.java @@ -82,7 +82,7 @@ public abstract class Introspector implements Cloneable { this.set(convertedName, clazz.newInstance()); result = this.get(convertedName); } catch (DynamicException | InstantiationException | IllegalAccessException e) { - + LOGGER.warn(e.getMessage(),e); } } @@ -106,7 +106,7 @@ public abstract class Introspector implements Cloneable { this.set(convertedName, clazz.newInstance()); value = this.get(convertedName); } catch (DynamicException | InstantiationException | IllegalAccessException e) { - + LOGGER.warn(e.getMessage(),e); } } if (value != null) { @@ -138,7 +138,7 @@ public abstract class Introspector implements Cloneable { this.set(convertedName, clazz.newInstance()); value = this.get(convertedName); } catch (DynamicException | InstantiationException | IllegalAccessException e) { - + LOGGER.warn(e.getMessage(),e); } } |