Author: pmouawad
Date: Sun Feb 24 20:12:09 2019
New Revision: 1854280
URL: http://svn.apache.org/viewvc?rev=1854280&view=rev
Log:
Fix javadoc errors
Modified:
jmeter/trunk/src/jorphan/org/apache/jorphan/documentation/VisibleForTesting.java
Modified:
jmeter/trunk/src/jorphan/org/apache/jorphan/documentation/VisibleForTesting.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/documentation/VisibleForTesting.java?rev=1854280&r1=1854279&r2=1854280&view=diff
==============================================================================
---
jmeter/trunk/src/jorphan/org/apache/jorphan/documentation/VisibleForTesting.java
(original)
+++
jmeter/trunk/src/jorphan/org/apache/jorphan/documentation/VisibleForTesting.java
Sun Feb 24 20:12:09 2019
@@ -26,7 +26,6 @@ import java.lang.annotation.RetentionPol
* Denotes that the class, method or field has its visibility relaxed so
* that unit tests can access it.
* This means that this API is not-public.
- * <p/>
* The <code>visibility</code> argument can be used to specific what the
original
* visibility should have been if it had not been made public or
package-private for testing.
* The default is to consider the element private.
@@ -51,8 +50,8 @@ public @interface VisibleForTesting {
}
/**
- * Intended visibility if the element had not been made public or
package-private for testing.
- * If not specified, one should assume the element originally intended to
be private.
+ * If no visibility specified, one should assume the element originally
intended to be private.
+ * @return {@link Visibility} Intended visibility if the element had not
been made public or package-private for testing.
*/
Visibility visibility() default Visibility.PRIVATE;
}