Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuki43zoo committed Jun 13, 2019
1 parent 3838379 commit f47b023
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -95,9 +95,8 @@ public Object get(Object key) {
return null;
}

if (fallbackParameterObject) {
return parameterMetaObject.hasGetter(strKey) ?
parameterMetaObject.getValue(strKey) : parameterMetaObject.getOriginalObject();
if (fallbackParameterObject && !parameterMetaObject.hasGetter(strKey)) {
return parameterMetaObject.getOriginalObject();
} else {
// issue #61 do not modify the context when reading
return parameterMetaObject.getValue(strKey);
Expand Down

0 comments on commit f47b023

Please sign in to comment.