From 509820d30c969c7a0f7c6f128a50eb9193650232 Mon Sep 17 00:00:00 2001 From: Nicola Mometto Date: Mon, 2 Mar 2026 11:50:44 +0000 Subject: [PATCH] Update README to clarify default value resolvers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d3a99bc..7c3acbe4 100644 --- a/README.md +++ b/README.md @@ -658,7 +658,7 @@ In short, from a helper you can throw an Exception and Handlebars.java will add Where is the ```hookContextStack``` method? Well, it depends on your application architecture. ### Using the ValueResolver - By default, Handlebars.java use the JavaBean methods (i.e. public getXxx and isXxx methods) and Map as value resolvers. + By default, Handlebars.java use the JavaBean methods (i.e. public getXxx and isXxx methods), Map as value and Method as value resolvers. You can choose a different value resolver. This section describe how to do this.