remove unused imports

This commit is contained in:
Sebastian Sdorra
2014-05-08 21:27:15 +02:00
parent aa2ba0a1b6
commit 72978a05af
10 changed files with 1 additions and 22 deletions

View File

@@ -40,7 +40,6 @@ import com.google.common.io.Closeables;
import sonia.scm.repository.Repository;
import sonia.scm.repository.SvnRepositoryHandler;
import sonia.scm.repository.SvnUtil;
import sonia.scm.repository.api.Command;
//~--- JDK imports ------------------------------------------------------------

View File

@@ -38,7 +38,6 @@ package sonia.scm.web;
import com.google.inject.servlet.ServletModule;
import sonia.scm.plugin.ext.Extension;
import sonia.scm.web.filter.BasicAuthenticationFilter;
//~--- JDK imports ------------------------------------------------------------
@@ -75,7 +74,7 @@ public class SvnServletModule extends ServletModule
Map<String, String> parameters = new HashMap<String, String>();
parameters.put(PARAMETER_SVN_PARENTPATH,
System.getProperty("java.io.tmpdir"));
System.getProperty("java.io.tmpdir"));
serve(PATTERN_SVN).with(SvnDAVServlet.class, parameters);
}
}