Merge changes I8e97aec2,Ib6df55db into asm_14.3.1

* changes:
  ASM #16693 changed swear words to all upper case
  ASM #16693 fixed typo in the filter


Former-commit-id: c2226a2817 [formerly c2226a2817 [formerly 0c3de224e672ea5259eaa395672efdf8982a1d45]]
Former-commit-id: afc51d425d
Former-commit-id: dfffeb2fd3
This commit is contained in:
Matthew Howard 2014-11-04 13:11:10 -05:00 committed by Gerrit Code Review
commit 79883bc17e

View file

@ -88,9 +88,9 @@ import com.raytheon.uf.viz.spellchecker.jobs.SpellCheckJob;
*
*/
public class SpellCheckDlg extends Dialog implements ISpellingProblemCollector {
private static java.util.List<String> swearWords = Arrays.asList("asshole", "asshole's", "assholes",
"bitch", "bitch's", "bitches", "leprosy", "gayest",
"shit", "piss", "pissed","psser","pisses","pissing","tits");
private static java.util.List<String> swearWords = Arrays.asList("ASSHOLE", "ASSHOLE'S", "ASSHOLES",
"BITCH", "BITCH'S", "BITCHES", "LEPROSY", "GAYEST",
"SHIT", "PISS", "PISSED","PISSER","PISSES","PISSING","TITS");
private static final transient IUFStatusHandler statusHandler = UFStatus.getHandler(SpellCheckDlg.class);