This is an automated email from the ASF dual-hosted git repository. fschumacher 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 21f24d3 No need for a semicolon here 21f24d3 is described below commit 21f24d34b063eb47dd8424258d0b23549cbeadb6 Author: Felix Schumacher AuthorDate: Sun Aug 30 15:53:29 2020 +0200 No need for a semicolon here --- .../main/java/org/apache/jmeter/protocol/http/proxy/SamplerCreator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/SamplerCreator.java b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/SamplerCreator.java index 2f69d81..81bc9d9 100644 --- a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/SamplerCreator.java +++ b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/proxy/SamplerCreator.java @@ -100,5 +100,5 @@ public interface SamplerCreator { * * @param value to be used */ - default void setCounter(int value) {}; + default void setCounter(int value) {} }