StringBuilder log = new StringBuilder();
try {
// read in the current word list including comment lines
final InputStream str = WordList.class.getResourceAsStream(WordList.WORDS_FILENAME);
final BufferedReader reader = new BufferedReader(new UnicodeSupportingInputStreamReader(str, "UTF-8"));
final List<String> comments = new ArrayList<String>();
try {
wl.read(reader, comments);
} finally {