(String word)
| 46 | } |
| 47 | |
| 48 | boolean add(String word) { |
| 49 | boolean val = stringSet.add(word.toLowerCase()); |
| 50 | stringSetSetting.entry.set(Data.ctx, new UserPreferences.Entry.StringSetValue(stringSet)); |
| 51 | return val; |
| 52 | } |
| 53 | |
| 54 | |
| 55 | public boolean isEmpty() { |
no test coverage detected