diff options
author | IanHowell <ian.howell@att.com> | 2018-03-29 15:04:28 -0500 |
---|---|---|
committer | IanHowell <ian.howell@att.com> | 2018-03-29 15:04:33 -0500 |
commit | c2390f53793402252ca747ec3d52734e63f6a6b4 (patch) | |
tree | 673847b9fc4fc0e2e4b01196a2d30510ed418146 /cadi/core/src/main | |
parent | 3635fc5c8d8409d1c5e0f521469a6aaca4d19ffe (diff) |
Add several JUnits for test coverage
This is several days worth of tests - future commits
will be smaller
Issue-ID: AAF-128
Change-Id: I32d9b76d3ff95b32f96eaaf3d2ab8a36167c5254
Signed-off-by: IanHowell <ian.howell@att.com>
Diffstat (limited to 'cadi/core/src/main')
-rw-r--r-- | cadi/core/src/main/java/org/onap/aaf/cadi/config/GetAccess.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cadi/core/src/main/java/org/onap/aaf/cadi/config/GetAccess.java b/cadi/core/src/main/java/org/onap/aaf/cadi/config/GetAccess.java index 05ee90cd..b44de05f 100644 --- a/cadi/core/src/main/java/org/onap/aaf/cadi/config/GetAccess.java +++ b/cadi/core/src/main/java/org/onap/aaf/cadi/config/GetAccess.java @@ -48,12 +48,7 @@ public class GetAccess extends PropAccess { */ @Override public String getProperty(String tag) { - String rv; - rv = super.getProperty(tag, null); - if(rv==null && getter!=null) { - rv = getter.get(tag, null, true); - } - return rv; + return getProperty(tag, null); } public Get get() { |