} catch (Exception e) {
log.error("Error creating class instance", e);
}
}
Stopwords stopwords = null;
if (stopwordsClassName != null) {
try {
@SuppressWarnings("rawtypes")
Class clazz = Class.forName(stopwordsClassName);
stopwords = (Stopwords) clazz.newInstance();