unico       2004/02/22 07:10:37

  Modified:    src/java/org/apache/cocoon/components/cprocessor/sitemap
                        AbstractComponentNode.java
  Log:
  null default for hint
  
  Revision  Changes    Path
  1.2       +1 -1      
cocoon-2.2/src/java/org/apache/cocoon/components/cprocessor/sitemap/AbstractComponentNode.java
  
  Index: AbstractComponentNode.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.2/src/java/org/apache/cocoon/components/cprocessor/sitemap/AbstractComponentNode.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractComponentNode.java        28 Jan 2004 17:25:30 -0000      1.1
  +++ AbstractComponentNode.java        22 Feb 2004 15:10:37 -0000      1.2
  @@ -82,7 +82,7 @@
       }
       
       public void configure(Configuration config) throws 
ConfigurationException {
  -        m_componentHint = config.getChild("component").getAttribute("hint");
  +        m_componentHint = 
config.getChild("component").getAttribute("hint",null);
           Collection labels = splitLabels(config.getAttribute("label",null));
           m_labels = Collections.unmodifiableCollection(labels);
           m_mimeType = config.getAttribute("mime-type",null);
  
  
  

Reply via email to