LUCENE spell: Implement SuggestWord.toString (#1735)

This commit is contained in:
David Smiley 2020-08-11 12:45:49 -04:00 committed by GitHub
parent 092076ec39
commit 97c9bb732a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -44,4 +44,9 @@ public final class SuggestWord{
*/
public String string;
@Override
public String toString() {
return "SuggestWord(string=" + string + ", score=" + score + ", freq=" + freq + ")";
}
}