You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by ne...@apache.org on 2001/12/23 05:29:57 UTC

cvs commit: jakarta-jmeter/src/org/apache/jmeter/visualizers GraphAccum.java

neth        01/12/22 20:29:57

  Modified:    src/org/apache/jmeter/visualizers GraphAccum.java
  Log:
  TOTAL_TIME constant moved from HttpSamplerFull.java to SampleResult.java.
  
  Revision  Changes    Path
  1.4       +2 -2      jakarta-jmeter/src/org/apache/jmeter/visualizers/GraphAccum.java
  
  Index: GraphAccum.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/org/apache/jmeter/visualizers/GraphAccum.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- GraphAccum.java	2001/09/13 14:46:52	1.3
  +++ GraphAccum.java	2001/12/23 04:29:57	1.4
  @@ -244,7 +244,7 @@
   	 int compCount = 0;	// number of components
   
   	ArrayList resultList = 
  -		(ArrayList)oneSample.getValue(HTTPSamplerFull.RESULT_LIST);
  +		(ArrayList)oneSample.getValue(SampleResult.RESULT_LIST);
   	// allocate previousPts only the first time
   	int resultListCount = 0;
   	if(!previousPtsAlloc)
  @@ -268,7 +268,7 @@
   	long totalTime = oneSample.getTime();
   	// if the page has other components then set the total time to be that including
   	// all its components' load time
  -	Long dataLong = (Long)oneSample.getValue(HTTPSamplerFull.TOTAL_TIME);
  +	Long dataLong = (Long)oneSample.getValue(SampleResult.TOTAL_TIME);
   	if(dataLong != null)
   	{
   		totalTime = dataLong.longValue();
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>