Fixed small issue in SuggestBuilder#getText

This commit is contained in:
Christoph Büscher 2016-02-11 11:41:34 +01:00
parent e000808836
commit ef8ef2afe0
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class SuggestBuilder extends ToXContentToBytes implements Writeable<Sugge
* Gets the global suggest text
*/
public String getText() {
return null;
return this.globalText;
}
/**