summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java b/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
index 6a932c41..3d15b09d 100644
--- a/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
+++ b/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
@@ -209,6 +209,11 @@ public class PropAccess implements Access {
Object value = es.getValue();
if(value instanceof String) {
String trim = ((String)value).trim();
+ // Remove Beginning/End Quotes, which might be there if mixed with Bash Props
+ int s = 0, e=trim.length()-1;
+ if(s<e && trim.charAt(s)=='"' && trim.charAt(e)=='"') {
+ trim=trim.substring(s+1,e);
+ }
if(trim!=value) { // Yes, I want OBJECT equals
props.setProperty((String)es.getKey(), trim);
}