The current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function didn't resolve the value of the entry. ([source](https://github.com/jknack/handlebars.java/blob/master/handlebars-jackson2/src/main/java/com/github/jknack/handlebars/JsonNodeValueResolver.java#L156)) For example: With input `{ "array": [ {"foo":"bar"},{"foo":"biz"} ] }` and template `{{ join this.array ", " }}` The current implementation will output `{foo="bar"},{foo="biz"}` Instead we want the output become `{foo=bar},{foo=biz}` Task: Update the current entrySet() implementation of the Map inside the JsonNodeValueResolver.toMap() function to resolve the entry value.