You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2017/04/10 10:45:30 UTC

svn commit: r1790800 - /jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java

Author: sebb
Date: Mon Apr 10 10:45:30 2017
New Revision: 1790800

URL: http://svn.apache.org/viewvc?rev=1790800&view=rev
Log:
Generics

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java?rev=1790800&r1=1790799&r2=1790800&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/report/dashboard/ApdexPerTransactionTest.java Mon Apr 10 10:45:30 2017
@@ -145,7 +145,7 @@ public class ApdexPerTransactionTest ext
     }
 	
 	private static String getOptionalProperty(Props props,
-            String key, Class clazz) {
+            String key, Class<String> clazz) {
         String property = getProperty(props, key, null, clazz);
         if (property != null) {
         }
@@ -153,7 +153,7 @@ public class ApdexPerTransactionTest ext
     }
 	
 	private static String getProperty(Props props, String key,
-            String defaultValue, Class clazz)
+            String defaultValue, Class<String> clazz)
              {
         String value = props.getValue(key);
         if (value == null) {