donaldp     2003/04/05 23:08:40

  Modified:    src/java/org/apache/avalon/phoenix/components/configuration/validator
                        DelegateEntry.java
  Log:
  Remove this. prefixes
  
  Revision  Changes    Path
  1.6       +8 -11     
avalon-phoenix/src/java/org/apache/avalon/phoenix/components/configuration/validator/DelegateEntry.java
  
  Index: DelegateEntry.java
  ===================================================================
  RCS file: 
/home/cvs/avalon-phoenix/src/java/org/apache/avalon/phoenix/components/configuration/validator/DelegateEntry.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DelegateEntry.java        22 Mar 2003 12:07:09 -0000      1.5
  +++ DelegateEntry.java        6 Apr 2003 07:08:40 -0000       1.6
  @@ -61,42 +61,39 @@
   class DelegateEntry
   {
       private final String m_schemaType;
  -
       private final String m_className;
  -
       private final Configuration m_configuration;
  -
       private ConfigurationValidator m_validator;
   
       public DelegateEntry( final String schemaType, final String className, final 
Configuration configuration )
       {
  -        this.m_className = className;
  -        this.m_configuration = configuration;
  -        this.m_schemaType = schemaType;
  +        m_className = className;
  +        m_configuration = configuration;
  +        m_schemaType = schemaType;
       }
   
       public String getSchemaType()
       {
  -        return this.m_schemaType;
  +        return m_schemaType;
       }
   
       public Configuration getConfiguration()
       {
  -        return this.m_configuration;
  +        return m_configuration;
       }
   
       public String getClassName()
       {
  -        return this.m_className;
  +        return m_className;
       }
   
       public ConfigurationValidator getValidator()
       {
  -        return this.m_validator;
  +        return m_validator;
       }
   
       public void setValidator( final ConfigurationValidator validator )
       {
  -        this.m_validator = validator;
  +        m_validator = validator;
       }
   }
  
  
  

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

Reply via email to