Fix line length in new indices module tests.
This commit is contained in:
parent
e188aec5fd
commit
3f2946ce6d
|
@ -43,14 +43,16 @@ public class IndicesModuleTests extends ESTestCase {
|
|||
|
||||
private static class FakeMapperParser implements Mapper.TypeParser {
|
||||
@Override
|
||||
public Mapper.Builder<?, ?> parse(String name, Map<String, Object> node, ParserContext parserContext) throws MapperParsingException {
|
||||
public Mapper.Builder<?, ?> parse(String name, Map<String, Object> node, ParserContext parserContext)
|
||||
throws MapperParsingException {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private static class FakeMetadataMapperParser implements MetadataFieldMapper.TypeParser {
|
||||
@Override
|
||||
public MetadataFieldMapper.Builder<?, ?> parse(String name, Map<String, Object> node, ParserContext parserContext) throws MapperParsingException {
|
||||
public MetadataFieldMapper.Builder<?, ?> parse(String name, Map<String, Object> node, ParserContext parserContext)
|
||||
throws MapperParsingException {
|
||||
return null;
|
||||
}
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue