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

bitstorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 4cec94d7e6 Fixes issue #1593: typo in  PartialPageUpdate WARN message 
is fixed (#1594)
4cec94d7e6 is described below

commit 4cec94d7e69e5c5ede5264938e7c11f55c78bf22
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Fri Sep 11 21:49:01 2026 +0700

    Fixes issue #1593: typo in  PartialPageUpdate WARN message is fixed (#1594)
---
 wicket-core/src/main/java/org/apache/wicket/page/PartialPageUpdate.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/wicket-core/src/main/java/org/apache/wicket/page/PartialPageUpdate.java 
b/wicket-core/src/main/java/org/apache/wicket/page/PartialPageUpdate.java
index 67871bdd62..4566f9217e 100644
--- a/wicket-core/src/main/java/org/apache/wicket/page/PartialPageUpdate.java
+++ b/wicket-core/src/main/java/org/apache/wicket/page/PartialPageUpdate.java
@@ -564,7 +564,7 @@ public abstract class PartialPageUpdate
                        {
                                // no longer on page - log the error but don't 
block the user of the application
                                // (which was the behavior in Wicket <= 7).
-                               LOG.warn("Component '{}' not cannot be updated 
because it was already removed from page", component);
+                               LOG.warn("Component '{}' cannot be updated 
because it was already removed from page", component);
                                return;
                        }
                        else if (pageOfComponent != page) 

Reply via email to