You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2015/09/21 13:58:27 UTC

[6/8] wicket git commit: Removed superfluous comment

Removed superfluous comment


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

Branch: refs/heads/master
Commit: d7cf97499e9eb210237c61b00163eccf71fd5ee2
Parents: 2246156
Author: Martijn Dashorst <ma...@gmail.com>
Authored: Mon Sep 21 13:10:18 2015 +0200
Committer: Martijn Dashorst <ma...@gmail.com>
Committed: Mon Sep 21 13:10:18 2015 +0200

----------------------------------------------------------------------
 wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/d7cf9749/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java b/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java
index d7da398..ca79052 100644
--- a/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java
+++ b/wicket-core/src/main/java/org/apache/wicket/MarkupContainer.java
@@ -638,10 +638,9 @@ public abstract class MarkupContainer extends Component implements Iterable<Comp
 		{
 			addStateChange();
 
-			// Loop through child components
 			for (Component child: this)
 			{
-				// Do not call remove() because the state change would than be
+				// Do not call remove() because the state change would then be
 				// recorded twice.
 				child.internalOnRemove();
 				child.detach();