You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pe...@apache.org on 2012/10/30 17:38:41 UTC

git commit: WICKET-4848 Reporter of FeedbackMessage should not be set to 'null' on detach

Updated Branches:
  refs/heads/master 1f4041c6e -> 1a264aff6


WICKET-4848 Reporter of FeedbackMessage should not be set to 'null' on detach


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/1a264aff
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1a264aff
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1a264aff

Branch: refs/heads/master
Commit: 1a264aff6e712908226c1972482e74d3c16901e9
Parents: 1f4041c
Author: Peter Ertl <pe...@apache.org>
Authored: Tue Oct 30 17:37:46 2012 +0100
Committer: Peter Ertl <pe...@apache.org>
Committed: Tue Oct 30 17:37:46 2012 +0100

----------------------------------------------------------------------
 .../apache/wicket/feedback/FeedbackMessage.java    |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/1a264aff/wicket-core/src/main/java/org/apache/wicket/feedback/FeedbackMessage.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/feedback/FeedbackMessage.java b/wicket-core/src/main/java/org/apache/wicket/feedback/FeedbackMessage.java
index b52f4e9..9520f6f 100644
--- a/wicket-core/src/main/java/org/apache/wicket/feedback/FeedbackMessage.java
+++ b/wicket-core/src/main/java/org/apache/wicket/feedback/FeedbackMessage.java
@@ -267,9 +267,6 @@ public class FeedbackMessage implements IDetachable
 	@Override
 	public void detach()
 	{
-		if (rendered)
-		{
-			reporter = null;
-		}
+		// no-op
 	}
 }