You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by mm...@apache.org on 2004/07/20 21:00:47 UTC

svn commit: rev 23098 - incubator/depot/trunk/update/src/java/org/apache/depot/update/updater

Author: mmay
Date: Tue Jul 20 14:00:46 2004
New Revision: 23098

Modified:
   incubator/depot/trunk/update/src/java/org/apache/depot/update/updater/ConfiguredArtifactUpdater.java
Log:
Added UpdaterConfig once again


Modified: incubator/depot/trunk/update/src/java/org/apache/depot/update/updater/ConfiguredArtifactUpdater.java
==============================================================================
--- incubator/depot/trunk/update/src/java/org/apache/depot/update/updater/ConfiguredArtifactUpdater.java	(original)
+++ incubator/depot/trunk/update/src/java/org/apache/depot/update/updater/ConfiguredArtifactUpdater.java	Tue Jul 20 14:00:46 2004
@@ -18,6 +18,7 @@
 
 import org.apache.depot.update.ArtifactUpdater;
 import org.apache.depot.update.UpdateException;
+import org.apache.depot.update.config.UpdaterConfig;
 
 /**
  * A StandardResourceUpdater is a {@link org.apache.depot.update.updater.DefaultArtifactUpdater }
@@ -61,5 +62,7 @@
 	}
 	
 	private void initClass() {
+		// Configure from the XML file...
+		UpdaterConfig.configure(m_filename);
 	}
 }