jvanzyl     00/11/27 17:05:42

  Modified:    src/java/org/apache/velocity/runtime Runtime.java
  Log:
  - updating
  
  Revision  Changes    Path
  1.60      +6 -1      
jakarta-velocity/src/java/org/apache/velocity/runtime/Runtime.java
  
  Index: Runtime.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/Runtime.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- Runtime.java      2000/11/28 00:14:27     1.59
  +++ Runtime.java      2000/11/28 01:05:39     1.60
  @@ -154,7 +154,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
    * @author <a href="mailto:[EMAIL PROTECTED]">Jeff Bowden</a>
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magusson Jr.</a>
  - * @version $Id: Runtime.java,v 1.59 2000/11/28 00:14:27 jvanzyl Exp $
  + * @version $Id: Runtime.java,v 1.60 2000/11/28 01:05:39 jvanzyl Exp $
    */
   public class Runtime implements RuntimeConstants
   {
  @@ -1111,6 +1111,11 @@
       public static int getInt( String strKey )
       {
           return VelocityResources.getInt( strKey );
  +    }
  +
  +    public static int getInt( String strKey, int defaultValue )
  +    {
  +        return VelocityResources.getInt( strKey, defaultValue );
       }
   
       /**
  
  
  

Reply via email to