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

git commit: override onDetach, not detach, otherwise the LDM will not get detached

Updated Branches:
  refs/heads/master a25f5d484 -> 46b25bb1e


override onDetach, not detach, otherwise the LDM will not get detached


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

Branch: refs/heads/master
Commit: 46b25bb1ed67f31e082f91712278104a1f0ebfcb
Parents: a25f5d4
Author: Emond Papegaaij <pa...@apache.org>
Authored: Thu Aug 30 09:17:25 2012 +0200
Committer: Emond Papegaaij <pa...@apache.org>
Committed: Thu Aug 30 09:17:25 2012 +0200

----------------------------------------------------------------------
 .../org/apache/wicket/model/ResourceModel.java     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/46b25bb1/wicket-core/src/main/java/org/apache/wicket/model/ResourceModel.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/model/ResourceModel.java b/wicket-core/src/main/java/org/apache/wicket/model/ResourceModel.java
index 60703d7..6abf065 100644
--- a/wicket-core/src/main/java/org/apache/wicket/model/ResourceModel.java
+++ b/wicket-core/src/main/java/org/apache/wicket/model/ResourceModel.java
@@ -128,7 +128,7 @@ public class ResourceModel extends AbstractReadOnlyModel<String>
 		}
 
 		@Override
-		public void detach()
+		protected void onDetach()
 		{
 			ResourceModel.this.detach();
 		}