You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2003/12/22 14:48:46 UTC

cvs commit: cocoon-2.1/src/java/org/apache/cocoon/matching MountTableMatcher.java

joerg       2003/12/22 05:48:46

  Modified:    src/java/org/apache/cocoon/matching MountTableMatcher.java
  Log:
  manager => this.manager to avoid Eclipse warning about unread this.manager
  
  Revision  Changes    Path
  1.4       +2 -2      cocoon-2.1/src/java/org/apache/cocoon/matching/MountTableMatcher.java
  
  Index: MountTableMatcher.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/matching/MountTableMatcher.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MountTableMatcher.java	18 Nov 2003 11:11:12 -0000	1.3
  +++ MountTableMatcher.java	22 Dec 2003 13:48:46 -0000	1.4
  @@ -118,7 +118,7 @@
   
       public void service(ServiceManager manager) throws ServiceException {
           this.manager = manager;
  -        this.resolver = (SourceResolver)manager.lookup(SourceResolver.ROLE);
  +        this.resolver = (SourceResolver)this.manager.lookup(SourceResolver.ROLE);
       }
   
       public void parameterize(Parameters params) throws ParameterException {