You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2010/12/21 12:09:12 UTC

svn commit: r1051451 - /james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java

Author: norman
Date: Tue Dec 21 11:09:12 2010
New Revision: 1051451

URL: http://svn.apache.org/viewvc?rev=1051451&view=rev
Log:
JPADomainList.configure(..) must call super.configure(..)

Modified:
    james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java

Modified: james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java
URL: http://svn.apache.org/viewvc/james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java?rev=1051451&r1=1051450&r2=1051451&view=diff
==============================================================================
--- james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java (original)
+++ james/server/trunk/domainlist-jpa/src/main/java/org/apache/james/domainlist/jpa/JPADomainList.java Tue Dec 21 11:09:12 2010
@@ -67,6 +67,7 @@ public class JPADomainList extends Abstr
      */
     @SuppressWarnings("unchecked")
     public void configure(HierarchicalConfiguration config) throws ConfigurationException {
+        super.configure(config);
         // TODO The common configuration could be migrated to AbstractDomainList (should it implement Configurable?)
         setAutoDetect(config.getBoolean("autodetect", true));    
         setAutoDetectIP(config.getBoolean("autodetectIP", true));    



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org