sebb        2005/03/20 13:20:54

  Modified:    src/protocol/tcp/org/apache/jmeter/protocol/tcp/sampler
                        TCPSampler.java
  Log:
  Minor tidy up
  
  Revision  Changes    Path
  1.11      +1 -5      
jakarta-jmeter/src/protocol/tcp/org/apache/jmeter/protocol/tcp/sampler/TCPSampler.java
  
  Index: TCPSampler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/tcp/org/apache/jmeter/protocol/tcp/sampler/TCPSampler.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TCPSampler.java   6 Oct 2004 14:43:56 -0000       1.10
  +++ TCPSampler.java   20 Mar 2005 21:20:54 -0000      1.11
  @@ -122,7 +122,7 @@
                Socket con = (Socket) cp.get(TCPKEY);
                if (con != null) {
                        log.debug(this+" Reusing connection "+con); 
//$NON-NLS-1$
  -                     return (Socket) con; 
  +                     return con; 
                }
        
                // Not in cache, so create new one and cache it
  @@ -419,8 +419,6 @@
       public void testStarted(String host)
       {
                log.debug(this+" test started on "+host);
  -        // TODO Auto-generated method stub
  -        
       }
   
       /* (non-Javadoc)
  @@ -439,7 +437,5 @@
       public void testIterationStart(LoopIterationEvent event)
       {
                log.debug(this+" test iteration start on 
"+event.getIteration());
  -        // TODO Auto-generated method stub
  -        
       }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to