while ((strLine = br.readLine()) != null) {
if (StringHelper.containsNonWhitespace(strLine)) {
strLine = strLine.trim();
if ( ! strLine.startsWith("#")) {
blacklist.add(strLine.trim());
log.info("Excluding chelp path::" + strLine + " - found on blacklist::" + blackListFile.getAbsolutePath());
}
}
}
in.close();
} catch (Exception e) {