Skip to content

Commit

Permalink
HSEARCH-3399 Remove a useless type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Oct 25, 2018
1 parent 866a60d commit 0ecd0dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -19,7 +19,7 @@
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;

public class FieldSortBuilderImpl<F> extends AbstractSearchSortBuilder
public class FieldSortBuilderImpl extends AbstractSearchSortBuilder
implements FieldSortBuilder<ElasticsearchSearchSortBuilder> {

private static final Log log = LoggerFactory.make( Log.class, MethodHandles.lookup() );
Expand Down
Expand Up @@ -30,7 +30,7 @@ public StandardFieldSortBuilderFactory(ElasticsearchFieldConverter converter) {

@Override
public FieldSortBuilder<ElasticsearchSearchSortBuilder> createFieldSortBuilder(String absoluteFieldPath) {
return new FieldSortBuilderImpl<>( absoluteFieldPath, converter );
return new FieldSortBuilderImpl( absoluteFieldPath, converter );
}

@Override
Expand Down

0 comments on commit 0ecd0dc

Please sign in to comment.