Author: fschumacher
Date: Sun Jan 7 14:46:56 2018
New Revision: 1820468
URL: http://svn.apache.org/viewvc?rev=1820468&view=rev
Log:
Javadoc: Add return tag description
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/core/CsvSampleReader.java
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/core/CsvSampleReader.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/core/CsvSampleReader.java?rev=1820468&r1=1820467&r2=1820468&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/report/core/CsvSampleReader.java
(original)
+++ jmeter/trunk/src/core/org/apache/jmeter/report/core/CsvSampleReader.java
Sun Jan 7 14:46:56 2018
@@ -198,7 +198,7 @@ public class CsvSampleReader implements
}
/**
- * Gets next sample from the file.
+ * @return next sample from the file.
*/
public Sample readSample() {
Sample out = lastSampleRead;
@@ -207,14 +207,14 @@ public class CsvSampleReader implements
}
/**
- * Gets next sample from file but keep the reading file position.
+ * @return next sample from file but keep the reading file position.
*/
public Sample peek() {
return lastSampleRead;
}
/**
- * Indicates whether the file contains more samples
+ * @return flag, that indicates whether the file contains more samples
*/
public boolean hasNext() {
return lastSampleRead != null;