sebb        2003/09/27 16:51:04

  Modified:    src/core/org/apache/jmeter/util JMeterUtils.java
  Log:
  Return the string "[res_key=<key>]" if the supplied key cannot be found
  
  Revision  Changes    Path
  1.44      +3 -3      jakarta-jmeter/src/core/org/apache/jmeter/util/JMeterUtils.java
  
  Index: JMeterUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/util/JMeterUtils.java,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- JMeterUtils.java  15 Sep 2003 23:13:16 -0000      1.43
  +++ JMeterUtils.java  27 Sep 2003 23:51:04 -0000      1.44
  @@ -98,7 +98,7 @@
    */
   public class JMeterUtils implements UnitTestManager
   {
  -    private static final String VERSION = "1.9.20030915";
  +    private static final String VERSION = "1.9.20030922";
       private static PatternCacheLRU patternCache =
           new PatternCacheLRU(1000, new Perl5Compiler());
   
  @@ -299,7 +299,7 @@
           catch (MissingResourceException mre)
           {
               log.warn("ERROR! Resource string not found: [" + key + "]");
  -            resString = "";
  +            resString = "[res_key="+key+"]";
           }
           return resString;
       }
  
  
  

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

Reply via email to