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 se...@apache.org on 2004/01/07 01:43:22 UTC

cvs commit: jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/proxy ProxyControl.java

sebb        2004/01/06 16:43:22

  Modified:    src/protocol/http/org/apache/jmeter/protocol/http/proxy
                        ProxyControl.java
  Log:
  Make compliant with JDK1.3
  
  Revision  Changes    Path
  1.48      +3 -3      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
  
  Index: ProxyControl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- ProxyControl.java	17 Dec 2003 02:58:58 -0000	1.47
  +++ ProxyControl.java	7 Jan 2004 00:43:22 -0000	1.48
  @@ -443,13 +443,13 @@
                           // Not 100% sure, but I believe this can't happen, so
                           // I'll log and throw an error:
                           log.error("Program error",e);
  -                        throw new Error(e);
  +                        throw new Error(e.toString());//JDK1.4: remove .toString()
                       } catch (IllegalUserActionException e)
                       {
                           // Not 100% sure, but I believe this can't happen, so
                           // I'll log and throw an error:
                           log.error("Program error",e);
  -                        throw new Error(e);
  +                        throw new Error(e.toString());//JDK1.4: remove .toString()
                       }
                   }
               }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org