ASM #16693 changed swear words to all upper case

Change-Id: I8e97aec281a3e2c307355a2138bde605de41f446

Former-commit-id: 2c2662c191 [formerly 2c2662c191 [formerly ae186e99c22beeda347561fe24dc38a61a699c25]]
Former-commit-id: da58db313c
Former-commit-id: 4b578495cd
This commit is contained in:
Ying-Lian.Shi 2014-11-04 14:13:29 +00:00
parent 31d7a25345
commit 2ef5007880

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","pisser","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);