You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2012/09/04 13:26:52 UTC

svn commit: r1380564 - /jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java

Author: pmouawad
Date: Tue Sep  4 11:26:51 2012
New Revision: 1380564

URL: http://svn.apache.org/viewvc?rev=1380564&view=rev
Log:
Remove public as it's by default

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java?rev=1380564&r1=1380563&r2=1380564&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/engine/util/ValueTransformer.java Tue Sep  4 11:26:51 2012
@@ -33,7 +33,7 @@ interface ValueTransformer {
      * @param property
      * @return the transformed property
      */
-    public JMeterProperty transformValue(JMeterProperty property) throws InvalidVariableException;
+    JMeterProperty transformValue(JMeterProperty property) throws InvalidVariableException;
 
     /**
      * Set the master function for the value transformer. This handles
@@ -41,7 +41,7 @@ interface ValueTransformer {
      *
      * @param masterFunction
      */
-    public void setMasterFunction(CompoundVariable masterFunction);
+    void setMasterFunction(CompoundVariable masterFunction);
 
     /**
      * Set the variable names and values used to reverse replace functions with
@@ -49,5 +49,5 @@ interface ValueTransformer {
      *
      * @param vars
      */
-    public void setVariables(Map<String, String> vars);
+    void setVariables(Map<String, String> vars);
 }