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 2020/09/01 18:45:48 UTC

[jmeter] branch master updated: Comply to JLS and reorder modifiers

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 b4024a0  Comply to JLS and reorder modifiers
b4024a0 is described below

commit b4024a0bfd03ce933dc1a116c9aac62219abaf46
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Tue Sep 1 20:45:32 2020 +0200

    Comply to JLS and reorder modifiers
---
 .../org/apache/jmeter/timers/gui/AbstractRandomTimerGui.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/components/src/main/java/org/apache/jmeter/timers/gui/AbstractRandomTimerGui.java b/src/components/src/main/java/org/apache/jmeter/timers/gui/AbstractRandomTimerGui.java
index dba9d6c..b3634dc 100644
--- a/src/components/src/main/java/org/apache/jmeter/timers/gui/AbstractRandomTimerGui.java
+++ b/src/components/src/main/java/org/apache/jmeter/timers/gui/AbstractRandomTimerGui.java
@@ -148,7 +148,7 @@ public abstract class AbstractRandomTimerGui extends AbstractTimerGui {
      * {@inheritDoc}
      */
     @Override
-    abstract public String getLabelResource();
+    public abstract String getLabelResource();
 
     /**
      * Create implementation of RandomTimer
@@ -159,20 +159,20 @@ public abstract class AbstractRandomTimerGui extends AbstractTimerGui {
     /**
      * @return String timer delay label key
      */
-    abstract protected String getTimerDelayLabelKey();
+    protected abstract String getTimerDelayLabelKey();
 
     /**
      * @return String timer range label key
      */
-    abstract protected String getTimerRangeLabelKey();
+    protected abstract String getTimerRangeLabelKey();
 
     /**
      * @return String default delay value
      */
-    abstract protected String getDefaultDelay();
+    protected abstract String getDefaultDelay();
 
     /**
      * @return String default range value
      */
-    abstract protected String getDefaultRange();
+    protected abstract String getDefaultRange();
 }