Skip to content

Commit

Permalink
Fix line longer than 140 characters in Murmur3FieldMapper
Browse files Browse the repository at this point in the history
  • Loading branch information
imotov authored and matriv committed Oct 19, 2018
1 parent 27b18c4 commit bbf87de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ protected void setupFieldType(BuilderContext context) {

public static class TypeParser 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 {
Builder builder = new Builder(name);

// tweaking these settings is no longer allowed, the entire purpose of murmur3 fields is to store a hash
Expand Down

0 comments on commit bbf87de

Please sign in to comment.