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 2016/10/15 21:07:11 UTC

wicket git commit: Fix javadoc links. Java 7 diamonds

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x cf43a060d -> 6c69e6547


Fix javadoc links. Java 7 diamonds


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

Branch: refs/heads/wicket-7.x
Commit: 6c69e65476004ed953848744f622c9270b355459
Parents: cf43a06
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sat Oct 15 23:06:45 2016 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sat Oct 15 23:06:45 2016 +0200

----------------------------------------------------------------------
 wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java | 2 +-
 .../apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/6c69e654/wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java b/wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java
index 9bd9433..abee1bd 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/TagUtils.java
@@ -237,7 +237,7 @@ public class TagUtils
 		Args.notEmpty(id, "id");
 		Args.withinRange(0, fragment.size() - 1, streamOffset, "streamOffset");
 
-		Deque<Boolean> openTagUsability = new LinkedList<Boolean>();
+		Deque<Boolean> openTagUsability = new LinkedList<>();
 		boolean canFind = true;
 
 		MarkupStream stream = new MarkupStream(fragment);

http://git-wip-us.apache.org/repos/asf/wicket/blob/6c69e654/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java
index a52d3e8..d7632bf 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/panel/IMarkupSourcingStrategy.java
@@ -34,10 +34,10 @@ import org.apache.wicket.markup.resolver.IComponentResolver;
 public interface IMarkupSourcingStrategy
 {
 	/**
-	 * Will be called in addition to {@link Component#renderHead(HtmlHeaderContainer)} and allows
+	 * Will be called in addition to {@link Component#internalRenderHead(HtmlHeaderContainer)} and allows
 	 * the strategy to contribute to the &lt;head&gt; section of the response.
 	 * 
-	 * @see Component#renderHead(HtmlHeaderContainer)
+	 * @see Component#internalRenderHead(HtmlHeaderContainer)
 	 * 
 	 * @param component
 	 *            The component calling the strategy