Author: sebb
Date: Sat Jan  8 14:18:03 2011
New Revision: 1056710

URL: http://svn.apache.org/viewvc?rev=1056710&view=rev
Log:
Simpler

Modified:
    
jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/ConstantThroughputTimer.java

Modified: 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/ConstantThroughputTimer.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/ConstantThroughputTimer.java?rev=1056710&r1=1056709&r2=1056710&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/ConstantThroughputTimer.java
 (original)
+++ 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/timers/ConstantThroughputTimer.java
 Sat Jan  8 14:18:03 2011
@@ -167,8 +167,7 @@ public class ConstantThroughputTimer ext
         case 4: //All threads in this group - alternate calculation
             final org.apache.jmeter.threads.AbstractThreadGroup group =
                 JMeterContextService.getContext().getThreadGroup();
-            ThroughputInfo groupInfo;
-            groupInfo = threadGroupsInfoMap.get(group);
+            ThroughputInfo groupInfo = threadGroupsInfoMap.get(group);
             if (groupInfo == null) {
                 groupInfo = new ThroughputInfo();
                 ThroughputInfo previous = 
threadGroupsInfoMap.putIfAbsent(group, groupInfo);



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to