Repository: wicket Updated Branches: refs/heads/master 8088d460a -> a8c6daec3
WICKET-3335 small cleanup of dequeuing code Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a8c6daec Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a8c6daec Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a8c6daec Branch: refs/heads/master Commit: a8c6daec3cf6241bee5741e1083dfc0db1a3d6a8 Parents: 8088d46 Author: Igor Vaynberg <[email protected]> Authored: Tue Feb 25 08:20:53 2014 -0800 Committer: Igor Vaynberg <[email protected]> Committed: Tue Feb 25 09:25:35 2014 -0800 ---------------------------------------------------------------------- .../html/panel/DequeueMarkupFragment.java | 23 -------------------- .../wicket/markup/html/panel/Fragment.java | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/a8c6daec/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/DequeueMarkupFragment.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/DequeueMarkupFragment.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/DequeueMarkupFragment.java deleted file mode 100644 index 2239989..0000000 --- a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/DequeueMarkupFragment.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.wicket.markup.html.panel; - -//TODO queueing Do we need this class ? It is not used at he moment -public class DequeueMarkupFragment -{ - -} http://git-wip-us.apache.org/repos/asf/wicket/blob/a8c6daec/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java index e915714..25e9b10 100644 --- a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java +++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/Fragment.java @@ -136,7 +136,7 @@ public class Fragment extends WebMarkupContainer implements IQueueRegion @Override public DequeueContext newDequeueContext() { - IMarkupFragment markup = newMarkupSourcingStrategy().getMarkup(this, null); + IMarkupFragment markup = getMarkupSourcingStrategy().getMarkup(this, null); if (markup == null) { return null;
