You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mo...@apache.org on 2015/11/29 17:05:55 UTC

[29/33] wicket git commit: Javadoc fix - remove obsolete parameter

Javadoc fix - remove obsolete parameter

Remove unused local variable


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

Branch: refs/heads/lambdas
Commit: 9dbfaacbbb24396a6a0d657a71c25249e454c485
Parents: 45bc068
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Nov 26 12:45:12 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Nov 26 12:46:03 2015 +0200

----------------------------------------------------------------------
 .../java/org/apache/wicket/markup/resolver/AutoLinkResolver.java  | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/9dbfaacb/wicket-core/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java b/wicket-core/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java
index cbd2f1f..acb5c7c 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/resolver/AutoLinkResolver.java
@@ -868,15 +868,12 @@ public final class AutoLinkResolver implements IComponentResolver
 	 * 
 	 * @param pathInfo
 	 *            The container where the link is
-	 * @param id
-	 *            the name of the component
 	 * @param tag
 	 *            the component tag
 	 * @return A BookmarkablePageLink<?> to handle the href
 	 */
 	private Component resolveAutomaticLink(final PathInfo pathInfo, final ComponentTag tag)
 	{
-		final MarkupContainer container = pathInfo.getContainer();
 		final String componentId = tag.getId();
 
 		// get the tag name, which is something like 'a' or 'script'