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 2019/02/06 04:32:28 UTC

[wicket] branch master updated: Use none for maven-javadoc-plugin:3.0.0+

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 7bef3d6  Use <doclint>none</doclint> for maven-javadoc-plugin:3.0.0+
7bef3d6 is described below

commit 7bef3d67c8ccc269f02e8943bf9a22c3cd5438e9
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Wed Feb 6 06:31:28 2019 +0200

    Use <doclint>none</doclint> for maven-javadoc-plugin:3.0.0+
    
    Fix few small Javadoc warnings
---
 pom.xml                                                               | 2 +-
 wicket-core/src/main/java/org/apache/wicket/Component.java            | 4 ++--
 .../java/org/apache/wicket/request/mapper/info/PageComponentInfo.java | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 77234d5..2192118 100644
--- a/pom.xml
+++ b/pom.xml
@@ -935,7 +935,7 @@
 							<link>http://docs.oracle.com/javase/8/docs/api/</link>
 						</links>
 						<failOnError>false</failOnError>
-						<additionalparam>-Xdoclint:none</additionalparam>
+						<doclint>none</doclint>
 					</configuration>
 					<executions>
 						<execution>
diff --git a/wicket-core/src/main/java/org/apache/wicket/Component.java b/wicket-core/src/main/java/org/apache/wicket/Component.java
index 654e29f..a0dfb6e 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Component.java
+++ b/wicket-core/src/main/java/org/apache/wicket/Component.java
@@ -132,7 +132,7 @@ import org.slf4j.LoggerFactory;
  * unlikely for a web application and even the need to implement a listener interface directly is
  * highly discouraged. Instead, calls to listeners are routed through logic specific to the event,
  * resulting in calls to user code through other overridable methods. See {@link Form} for an
- * example of a component which listens for events via {@link IFormSubmitListener}.</li>
+ * example of a component which listens for events via {@link IRequestListener}.</li>
  * <li><b>Rendering </b>- Before a page or part of a page (in case of Ajax updates) is rendered, all
  * containing components are able to prepare for rendering via two hook methods:
  * {@link #onConfigure()} (regardless whether they are visible or not) and {@link #onBeforeRender()}
@@ -960,7 +960,7 @@ public abstract class Component
 	 * <pre>
 	 * final WebMarkupContainer source=new WebMarkupContainer("a") {
 	 * 	protected void onConfigure() {
-	 *    setVisible(Math.rand()>0.5f);
+	 *    setVisible(Math.rand()&gt;0.5f);
 	 *  }
 	 * };
 	 * 
diff --git a/wicket-request/src/main/java/org/apache/wicket/request/mapper/info/PageComponentInfo.java b/wicket-request/src/main/java/org/apache/wicket/request/mapper/info/PageComponentInfo.java
index 45f9c70..7575fe1 100644
--- a/wicket-request/src/main/java/org/apache/wicket/request/mapper/info/PageComponentInfo.java
+++ b/wicket-request/src/main/java/org/apache/wicket/request/mapper/info/PageComponentInfo.java
@@ -21,7 +21,7 @@ import org.apache.wicket.util.string.Strings;
 
 /**
  * Encapsulates both page and component info. Rendered in form of
- * &lt;pageInfo&gt-&lt;componentInfo&gt;
+ * &lt;pageInfo&gt;-&lt;componentInfo&gt;
  * 
  * @author Matej Knopp
  */