// ��fop�ļ����зִ�
forceBreakingWords = trimToNull(forceBreakingWords);
if (forceBreakingWords != null) {
Locale locale = parseLocale(forceBreakingWords);
WordBreaker wb = new WordBreaker(result, locale);
try {
wb.filter();
} catch (Exception e) {
throw new MojoExecutionException("Failed to breaking words", e);
}
}