Author: fschumacher
Date: Sat May 12 10:57:34 2018
New Revision: 1831461
URL: http://svn.apache.org/viewvc?rev=1831461&view=rev
Log:
javadoc: add description to param and return tags.
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/LaxDeflateInputStream.java
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java?rev=1831461&r1=1831460&r2=1831461&view=diff
==============================================================================
---
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
(original)
+++
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
Sat May 12 10:57:34 2018
@@ -548,7 +548,7 @@ public abstract class HTTPSamplerBase ex
/**
* @deprecated use {@link HTTPSamplerBase#setDoMultipartPost(boolean)}
- * @param value
+ * @param value flag whether multiparts should be used
*/
@Deprecated
public void setDoMultipartPost(boolean value) {
@@ -557,7 +557,7 @@ public abstract class HTTPSamplerBase ex
/**
* @deprecated use {@link HTTPSamplerBase#getDoMultipartPost()}
- * @param value
+ * @return flag whether multiparts should be used
*/
@Deprecated
public boolean getDoMultipartPost() {
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/LaxDeflateInputStream.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/LaxDeflateInputStream.java?rev=1831461&r1=1831460&r2=1831461&view=diff
==============================================================================
---
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/LaxDeflateInputStream.java
(original)
+++
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/hc/LaxDeflateInputStream.java
Sat May 12 10:57:34 2018
@@ -37,9 +37,9 @@ public class LaxDeflateInputStream exten
private final boolean relax;
/**
- * @param wrapped
- * @param relax
- * @throws IOException
+ * @param wrapped the InputStream that should be wrapped
+ * @param relax flag to enable relaxed mode
+ * @throws IOException when super class throws an IOException
*/
public LaxDeflateInputStream(InputStream wrapped, boolean relax) throws
IOException {
super(wrapped);