Skip to content

Commit 4039371

Browse files
Fixed JavaDoc
1 parent 7828486 commit 4039371

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/io/github/delirius325/jmeter/backendlistener/elasticsearch/ElasticSearchMetric.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ private void addDetails() {
166166
}
167167

168168
/**
169-
* This method is meant to return the elapsed time a human readable format. The purpose of this is
169+
* This method is meant to return the elapsed time in a human readable format. The purpose of this is
170170
* mostly for build comparison in Kibana. By doing this, the user is able to set the X-axis of his graph
171171
* to this date and split the series by build numbers. It allows him to overlap test results and see if
172172
* there is regression or not.

src/main/java/io/github/delirius325/jmeter/backendlistener/elasticsearch/ElasticSearchMetricSender.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ public ElasticSearchMetricSender(RestClient cli, String index, String user, Stri
4040
public int getListSize() { return this.metricList.size(); }
4141

4242
/**
43-
* This method clears the ElasticSearch documents list
43+
* This method closes the REST client
4444
*/
4545
public void closeConnection() throws IOException { this.client.close(); }
4646

4747
/**
48-
* This method closes the REST client
48+
* This method clears the ElasticSearch documents list
4949
*/
5050
public void clearList() { this.metricList.clear(); }
5151

0 commit comments

Comments
 (0)