You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2022/04/18 15:41:50 UTC

[jmeter] 11/16: Add override annotations to make error prone happy

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

commit ee2353ed1cf75ff87c17ce87fab66326d561821c
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Mon Apr 18 17:15:32 2022 +0200

    Add override annotations to make error prone happy
---
 .../org/apache/jmeter/functions/TestJavascriptFunctionWithRhino.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/functions/src/test/java/org/apache/jmeter/functions/TestJavascriptFunctionWithRhino.java b/src/functions/src/test/java/org/apache/jmeter/functions/TestJavascriptFunctionWithRhino.java
index e302ac3a68..7b4f32b1db 100644
--- a/src/functions/src/test/java/org/apache/jmeter/functions/TestJavascriptFunctionWithRhino.java
+++ b/src/functions/src/test/java/org/apache/jmeter/functions/TestJavascriptFunctionWithRhino.java
@@ -25,12 +25,14 @@ import org.junit.jupiter.api.BeforeEach;
 public class TestJavascriptFunctionWithRhino extends TestJavascriptFunction {
 
     @BeforeEach
+    @Override
     public void setUp() {
         JMeterUtils.getJMeterProperties().put("javascript.use_rhino", "true");
         super.setUp();
     }
 
     @AfterEach
+    @Override
     public void tearDown() {
         JMeterUtils.getJMeterProperties().remove("javascript.use_rhino");
     }