(String word)
| 41 | |
| 42 | |
| 43 | void remove(String word) { |
| 44 | stringSet.remove(word.toLowerCase()); |
| 45 | stringSetSetting.entry.set(Data.ctx, new UserPreferences.Entry.StringSetValue(stringSet)); |
| 46 | } |
| 47 | |
| 48 | boolean add(String word) { |
| 49 | boolean val = stringSet.add(word.toLowerCase()); |
no test coverage detected