You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/09/25 06:58:43 UTC

[jmeter] branch master updated: Fix javadoc errors

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 65ef4e2  Fix javadoc errors
65ef4e2 is described below

commit 65ef4e29480eafe41a282aa5cc53e03d26a15d7f
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Wed Sep 25 09:57:57 2019 +0300

    Fix javadoc errors
---
 .../org/apache/jmeter/assertions/jmespath/JMESPathAssertion.java    | 6 +++---
 .../apache/jmeter/assertions/jmespath/gui/JMESPathAssertionGui.java | 6 +++---
 .../src/main/resources/org/apache/jmeter/functions/package.html     | 2 +-
 .../src/main/resources/org/apache/commons/cli/avalon/package.html   | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/JMESPathAssertion.java b/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/JMESPathAssertion.java
index 0fb1d29..2d51b10 100644
--- a/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/JMESPathAssertion.java
+++ b/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/JMESPathAssertion.java
@@ -39,11 +39,11 @@ import io.burt.jmespath.Expression;
 
 /**
  * This is main class for JSON JMESPath Assertion which verifies assertion on
- * previous sample result using JMESPath expression </br>
+ * previous sample result using JMESPath expression
  * <a href="https://github.com/burtcorp/jmespath-java">JMESPath-java sources and
- * doc</a> </br>
- * <a href="http://jmespath.org/">JMESPath tutorial</a>
+ * doc</a>.
  *
+ * @see <a href="http://jmespath.org/">JMESPath website</a>
  * @since 5.2
  */
 public class JMESPathAssertion extends AbstractTestElement implements Serializable, Assertion, TestStateListener {
diff --git a/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/gui/JMESPathAssertionGui.java b/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/gui/JMESPathAssertionGui.java
index a33bb90..7d22b1b 100644
--- a/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/gui/JMESPathAssertionGui.java
+++ b/src/components/src/main/java/org/apache/jmeter/assertions/jmespath/gui/JMESPathAssertionGui.java
@@ -28,10 +28,10 @@ import org.apache.jorphan.gui.JLabeledTextField;
 
 /**
  * Java class representing GUI for the {@link JMESPathAssertion} component in
- * JMeter</br>
- * This class extends {@link JSONPathAssertionGui} to avoid code duplication
+ * JMeter.
+ * <p>This class extends {@link JSONPathAssertionGui} to avoid code duplication
  * because they work the same way, except that field names are different and
- * some method that we must {@link Override}.
+ * some method that we must {@link Override}.</p>
  *
  * @since 5.2
  */
diff --git a/src/functions/src/main/resources/org/apache/jmeter/functions/package.html b/src/functions/src/main/resources/org/apache/jmeter/functions/package.html
index ee135ca..e8938e2 100644
--- a/src/functions/src/main/resources/org/apache/jmeter/functions/package.html
+++ b/src/functions/src/main/resources/org/apache/jmeter/functions/package.html
@@ -23,7 +23,7 @@
     <h2>Methods to be implemented</h2>
     setParameters(Collection)
 
-        <br></br>
+        <br>
     execute(prevResult,currentSampler)
     Note that either or both of the parameters may be null.
 
diff --git a/src/jorphan/src/main/resources/org/apache/commons/cli/avalon/package.html b/src/jorphan/src/main/resources/org/apache/commons/cli/avalon/package.html
index a96c8f4..bb34061 100644
--- a/src/jorphan/src/main/resources/org/apache/commons/cli/avalon/package.html
+++ b/src/jorphan/src/main/resources/org/apache/commons/cli/avalon/package.html
@@ -23,7 +23,7 @@
     </head>
     <body bgcolor="white">
         Utility code for parsing command-line options.
-       <br></br>
+        <br>
 <p style="font-weight:bold">
 These classes were originally in the Avalon project in the package org.apache.avalon.excalibur.cli
 </p>
@@ -33,7 +33,7 @@ These classes were originally in the Avalon project in the package org.apache.av
         you in parsing command line options during startup time. It allows you
         to associate a short option and a long option to the same command, and
         then test for it in a switch statement.</p>
-        <a name="doc.Usage"></a>
+        <a id="doc.Usage"></a>
         <h3>Usage Example</h3>
         <pre>
 import java.util.List;