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 a60222e919010b2f3b9b586d3bbde54a73e616cc
Author: Felix Schumacher <felix.schumacher@internetallee.de>
AuthorDate: Thu Oct 8 18:07:09 2020 +0200
reorder modifier to conform to JLS
---
.../jmeter/protocol/http/config/gui/AbstractValidationTabbedPane.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/config/gui/AbstractValidationTabbedPane.java
b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/config/gui/AbstractValidationTabbedPane.java
index bc8c942..5de1b1d 100644
--- a/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/config/gui/AbstractValidationTabbedPane.java
+++ b/src/protocol/http/src/main/java/org/apache/jmeter/protocol/http/config/gui/AbstractValidationTabbedPane.java
@@ -66,7 +66,7 @@ abstract class AbstractValidationTabbedPane extends JTabbedPane {
* @param newTabIndex new requested tab index to validate
* @return the validated tab index
*/
- abstract protected int getValidatedTabIndex(final int currentTabIndex, final int newTabIndex);
+ protected abstract int getValidatedTabIndex(final int currentTabIndex, final int newTabIndex);
/**
* Return true if the validation feature should be enabled, {@code true} by default.
|