mcconnell    2002/07/02 18:00:29

  Modified:    assembly/src/java/org/apache/excalibur/merlin/registry
                        ComponentDefinition.java
  Log:
  updated to new Profile class
  
  Revision  Changes    Path
  1.2       +3 -3      
jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/registry/ComponentDefinition.java
  
  Index: ComponentDefinition.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/registry/ComponentDefinition.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ComponentDefinition.java  1 Jul 2002 04:27:15 -0000       1.1
  +++ ComponentDefinition.java  3 Jul 2002 01:00:29 -0000       1.2
  @@ -128,7 +128,7 @@
           if( m_criteria.length == 0 )
           {
               // create an implicit profile
  -            DefaultProfile profile = new DefaultProfile( m_registry, this );
  +            Profile profile = new Profile( m_registry, this );
               m_profiles.put( profile.getName(), profile );
           }
           else
  @@ -136,7 +136,7 @@
               // use the explicit profiles
               for( int i=0; i<m_criteria.length; i++ )
               {
  -                DefaultProfile profile = new DefaultProfile( m_registry, this, 
m_criteria[i] );
  +                Profile profile = new Profile( m_registry, this, m_criteria[i] );
                   m_profiles.put( profile.getName(), profile );
               }
           }
  
  
  

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

Reply via email to