From 99dee81d764cd950b98f2e71bd5591cf5b1acfcf Mon Sep 17 00:00:00 2001 From: javanna Date: Tue, 23 Jun 2015 09:32:24 +0200 Subject: [PATCH] Java api: make BoostableQueryBuilder package private --- .../org/elasticsearch/index/query/BoostableQueryBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/elasticsearch/index/query/BoostableQueryBuilder.java b/core/src/main/java/org/elasticsearch/index/query/BoostableQueryBuilder.java index 2733438a1c8..6c55cfcd438 100644 --- a/core/src/main/java/org/elasticsearch/index/query/BoostableQueryBuilder.java +++ b/core/src/main/java/org/elasticsearch/index/query/BoostableQueryBuilder.java @@ -22,12 +22,12 @@ package org.elasticsearch.index.query; /** * Query builder which allow setting some boost */ -public interface BoostableQueryBuilder> { +interface BoostableQueryBuilder> { /** * Sets the boost for this query. Documents matching this query will (in addition to the normal * weightings) have their score multiplied by the boost provided. */ - public B boost(float boost); + B boost(float boost); }