summaryrefslogtreecommitdiffstats
path: root/sonar-batch/src
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-batch/src')
-rw-r--r--sonar-batch/src/test/java/org/sonar/batch/index/CachesTest.java6
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) {