Skip to content

Commit

Permalink
make method findReplacementCandidates private
Browse files Browse the repository at this point in the history
  • Loading branch information
jaumeortola committed Aug 2, 2020
1 parent 660c98a commit 617e51d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public ArrayList<CandidateData> findReplacementCandidates(String word) {
return findReplacementCandidates(word, false);
}

public ArrayList<CandidateData> findReplacementCandidates(String word, boolean evenIfWordInDictionary) {
private ArrayList<CandidateData> findReplacementCandidates(String word, boolean evenIfWordInDictionary) {
if (!dictionaryMetadata.getInputConversionPairs().isEmpty()) {
word = DictionaryLookup.applyReplacements(word, dictionaryMetadata.getInputConversionPairs());
}
Expand Down

0 comments on commit 617e51d

Please sign in to comment.