You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by Stefan Groschupf <sg...@media-style.com> on 2006/05/13 00:41:55 UTC

summarizer.setConf(conf) should be removed.

Hi,
getExtensionInstance() already set the conf in case it the class  
implements Configurable.
...
   if(object instanceof Configurable) {
             ((Configurable)object).setConf(this.conf);

.. so calling  summarizer.setConf(conf); sets the configuration a  
second time, what is useless.

Should I file a bug?

Stefan