mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
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…
x
Reference in New Issue
Block a user