]> source.dussan.org Git - archiva.git/commitdiff
fix compilation failure now we use standard java.util.concurrent.*
authorOlivier Lamy <olamy@apache.org>
Wed, 25 May 2011 17:23:51 +0000 (17:23 +0000)
committerOlivier Lamy <olamy@apache.org>
Wed, 25 May 2011 17:23:51 +0000 (17:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1127588 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp/src/main/java/org/apache/maven/archiva/web/startup/ArchivaStartup.java

index 6c57143f7d5505513711a0d1dac012ced9a96b2f..067e7ef4880de483142aca68ecda3e94ac039268 100644 (file)
@@ -19,7 +19,6 @@ package org.apache.maven.archiva.web.startup;
  * under the License.
  */
 
-import edu.emory.mathcs.backport.java.util.concurrent.ExecutorService;
 import org.apache.archiva.scheduler.ArchivaTaskScheduler;
 import org.apache.archiva.scheduler.repository.RepositoryArchivaTaskScheduler;
 import org.apache.maven.archiva.common.ArchivaException;
@@ -34,9 +33,10 @@ import org.springframework.context.support.ClassPathXmlApplicationContext;
 import org.springframework.web.context.WebApplicationContext;
 import org.springframework.web.context.support.WebApplicationContextUtils;
 
-import java.lang.reflect.Field;
 import javax.servlet.ServletContextEvent;
 import javax.servlet.ServletContextListener;
+import java.lang.reflect.Field;
+import java.util.concurrent.ExecutorService;
 
 /**
  * ArchivaStartup - the startup of all archiva features in a deterministic order.