Author: nbubna
Date: Mon Mar  6 09:20:48 2006
New Revision: 383590

URL: http://svn.apache.org/viewcvs?rev=383590&view=rev
Log:
trivial simplification

Modified:
    
jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/RuntimeSingleton.java

Modified: 
jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/RuntimeSingleton.java
URL: 
http://svn.apache.org/viewcvs/jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/RuntimeSingleton.java?rev=383590&r1=383589&r2=383590&view=diff
==============================================================================
--- 
jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/RuntimeSingleton.java
 (original)
+++ 
jakarta/velocity/engine/trunk/src/java/org/apache/velocity/runtime/RuntimeSingleton.java
 Mon Mar  6 09:20:48 2006
@@ -1,7 +1,7 @@
 package org.apache.velocity.runtime;
 
 /*
- * Copyright 2000-2004 The Apache Software Foundation.
+ * Copyright 2000-2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License")
  * you may not use this file except in compliance with the License.
@@ -357,7 +357,7 @@
      */
     public static void warn(Object message)
     {
-        ri.getLog().warn( message );
+        getLog().warn(message);
     }
     
     /** 
@@ -365,7 +365,7 @@
      */
     public static void info(Object message)
     {
-        ri.getLog().info( message );
+        getLog().info(message);
     }
     
     /**
@@ -373,7 +373,7 @@
      */
     public static void error(Object message)
     {
-        ri.getLog().error( message );
+        getLog().error(message);
     }
     
     /**
@@ -381,7 +381,7 @@
      */
     public static void debug(Object message)
     {
-        ri.getLog().debug( message );
+        getLog().debug(message);
     }
 
     /**



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

Reply via email to