You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by dl...@apache.org on 2002/08/09 02:58:01 UTC

cvs commit: jakarta-velocity/src/java/org/apache/velocity/runtime/log PrimordialLogSystem.java

dlr         2002/08/08 17:58:01

  Modified:    src/java/org/apache/velocity/runtime/log
                        PrimordialLogSystem.java
  Log:
  init(RuntimeServices): Actually retain the reference to the
  RuntimeServices instance we're passed.
  
  Revision  Changes    Path
  1.3       +3 -2      jakarta-velocity/src/java/org/apache/velocity/runtime/log/PrimordialLogSystem.java
  
  Index: PrimordialLogSystem.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/log/PrimordialLogSystem.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- PrimordialLogSystem.java	24 Sep 2001 21:25:30 -0000	1.2
  +++ PrimordialLogSystem.java	9 Aug 2002 00:58:01 -0000	1.3
  @@ -71,7 +71,7 @@
    */
   public class PrimordialLogSystem implements LogSystem
   {
  -    private  Vector pendingMessages = new Vector();    
  +    private Vector pendingMessages = new Vector();    
       private RuntimeServices rsvc = null;
   
       /**
  @@ -84,6 +84,7 @@
       public void init( RuntimeServices rs )
           throws Exception
       {
  +        rsvc = rs;
       }
       
       /**
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>