You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2013/10/24 16:12:34 UTC

git commit: WICKET-5393 Remove 'final' from InlineFrame#onComponentTag()

Updated Branches:
  refs/heads/wicket-6.x fc8163d84 -> 9696bf9d2


WICKET-5393 Remove 'final' from InlineFrame#onComponentTag()


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

Branch: refs/heads/wicket-6.x
Commit: 9696bf9d2842840da6fb8f153503a4381f351edb
Parents: fc8163d
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Oct 24 17:11:45 2013 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Oct 24 17:12:11 2013 +0300

----------------------------------------------------------------------
 .../main/java/org/apache/wicket/markup/html/link/InlineFrame.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/9696bf9d/wicket-core/src/main/java/org/apache/wicket/markup/html/link/InlineFrame.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/link/InlineFrame.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/link/InlineFrame.java
index f9f0959..25ca5f3 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/link/InlineFrame.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/link/InlineFrame.java
@@ -172,7 +172,7 @@ public class InlineFrame extends WebMarkupContainer implements ILinkListener
 	 * @see org.apache.wicket.Component#onComponentTag(ComponentTag)
 	 */
 	@Override
-	protected final void onComponentTag(final ComponentTag tag)
+	protected void onComponentTag(final ComponentTag tag)
 	{
 		checkComponentTag(tag, "iframe");