This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch better-page-invalidation
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git

commit 37c8c5f45e417e71cb253673ff3702db0dd7765a
Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br>
AuthorDate: Sat May 13 17:54:00 2023 -0300

    TAP5-2742: making method public so it works with smarter page
    invalidation
---
 .../apache/tapestry5/integration/app1/pages/NumberBeanDisplayDemo.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/NumberBeanDisplayDemo.java
 
b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/NumberBeanDisplayDemo.java
index ddb09bc45..44b994f7e 100644
--- 
a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/NumberBeanDisplayDemo.java
+++ 
b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/NumberBeanDisplayDemo.java
@@ -22,7 +22,8 @@ public class NumberBeanDisplayDemo
     @Persist
     private IntegerHolder holder;
 
-    Object initialize(IntegerHolder holder)
+    // public needed for smarter page invalidation
+    public Object initialize(IntegerHolder holder)
     {
         this.holder = holder;
 

Reply via email to