diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-03 22:51:08 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-03 22:51:08 +0100 |
commit | 1e812fa858fa398020317f1aebd3d467dadf6d65 (patch) | |
tree | 1c6babc47fd2b470322fa11fff9d55082437c219 /sonar-batch/src | |
parent | 0030c3e73146ad1c88895b54139050a7536e2bad (diff) | |
download | sonarqube-1e812fa858fa398020317f1aebd3d467dadf6d65.tar.gz sonarqube-1e812fa858fa398020317f1aebd3d467dadf6d65.zip |
Fix incorrect imports
Diffstat (limited to 'sonar-batch/src')
-rw-r--r-- | sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java b/sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java index c8d5fc7dc0e..2e206f93071 100644 --- a/sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java +++ b/sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java @@ -19,7 +19,7 @@ */ package org.sonar.batch.index; -import edu.emory.mathcs.backport.java.util.Collections; +import java.util.Collections; import org.junit.After; import org.junit.Before; import org.junit.ClassRule; @@ -43,7 +43,9 @@ public class CachesTest { public static TemporaryFolder temp = new TemporaryFolder(); public static Caches createCacheOnTemp(TemporaryFolder temp) { - BootstrapSettings bootstrapSettings = new BootstrapSettings(new BootstrapProperties(Collections.emptyMap())); + BootstrapSettings bootstrapSettings = new BootstrapSettings( + new BootstrapProperties(Collections.<String,String>emptyMap()) + ); try { bootstrapSettings.properties().put(CoreProperties.WORKING_DIRECTORY, temp.newFolder().getAbsolutePath()); } catch (IOException e) { |