You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2009/01/16 17:10:51 UTC

svn commit: r735040 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java

Author: ivaynberg
Date: Fri Jan 16 08:10:51 2009
New Revision: 735040

URL: http://svn.apache.org/viewvc?rev=735040&view=rev
Log:
property detach behaviors that come from componenttags

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java?rev=735040&r1=735039&r2=735040&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/Component.java Fri Jan 16 08:10:51 2009
@@ -3948,8 +3948,8 @@
 					if (behavior.isEnabled(this))
 					{
 						behavior.onComponentTag(this, tag);
-						behavior.detach(this);
 					}
+					behavior.detach(this);
 				}
 			}