sebb        2004/01/06 16:42:41

  Modified:    src/protocol/http/org/apache/jmeter/protocol/http/parser
                        RegexpHTMLParser.java
  Log:
  Make compliant with JDK1.3
  
  Revision  Changes    Path
  1.13      +3 -3      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/parser/RegexpHTMLParser.java
  
  Index: RegexpHTMLParser.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/parser/RegexpHTMLParser.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- RegexpHTMLParser.java     15 Dec 2003 08:16:50 -0000      1.12
  +++ RegexpHTMLParser.java     7 Jan 2004 00:42:41 -0000       1.13
  @@ -210,8 +210,8 @@
           {
               log.error(
                   "Internal error compiling regular expression in ParseRegexp.");
  -            log.error("MalformedPatterException - " + mpe);
  -            throw new Error(mpe);
  +            log.error("MalformedPatternException - " + mpe);
  +            throw new Error(mpe.toString());//JDK1.4: remove .toString()
           }
       }
   
  
  
  

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

Reply via email to