Skip to content

Commit

Permalink
Symbolic spec values of attributes with dictionary 225
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Jul 8, 2024
1 parent 637db73 commit 24bc2a3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,10 @@ public String transformSpecValue(String entityName, String attrName, String valu
if (!container.symspec.containsKey(value)) {
newValue = getNewStringFromDictionary(container);
container.symspec.put(value, newValue);
log.warn("Symbolic specified value '{}' displayed as '{}' from dictionary", value, newValue);
} else {
newValue=container.symspec.get(value);
log.warn("Symbolic specified value '{}' displayed as '{}' from previous display value", value, newValue);
}
return newValue;
}
Expand Down

0 comments on commit 24bc2a3

Please sign in to comment.