adapt to upstream changes: remove wildcard imports from qa/ingest-with-mustache

This commit is contained in:
javanna 2015-12-22 13:40:17 +01:00 committed by Luca Cavanna
parent e54985b11c
commit 1b7dc45c28
4 changed files with 20 additions and 7 deletions

View File

@ -22,7 +22,12 @@ package org.elasticsearch.plugin.ingest;
import org.elasticsearch.ingest.IngestDocument;
import org.elasticsearch.ingest.ValueSource;
import java.util.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.hamcrest.Matchers.equalTo;

View File

@ -20,7 +20,8 @@
package org.elasticsearch.plugin.ingest;
import org.elasticsearch.ingest.*;
import org.elasticsearch.ingest.IngestDocument;
import org.elasticsearch.ingest.ValueSource;
import org.elasticsearch.ingest.processor.Processor;
import org.elasticsearch.ingest.processor.set.SetProcessor;
import org.hamcrest.Matchers;

View File

@ -20,11 +20,12 @@
package org.elasticsearch.plugin.ingest;
import org.elasticsearch.ingest.TemplateService;
import org.elasticsearch.script.ScriptException;
import java.util.*;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import static org.hamcrest.Matchers.*;
import static org.hamcrest.Matchers.equalTo;
public class TemplateServiceIT extends AbstractMustacheTests {

View File

@ -22,9 +22,15 @@ package org.elasticsearch.plugin.ingest;
import org.elasticsearch.ingest.IngestDocument;
import org.elasticsearch.ingest.ValueSource;
import java.util.*;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.hamcrest.Matchers.*;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.instanceOf;
import static org.hamcrest.Matchers.is;
public class ValueSourceMustacheIT extends AbstractMustacheTests {