}
}
}
private CountResult count(File file) throws IOException {
StepCounter counter = StepCounterFactory.getCounter(file.getName());
if (counter != null) {
return counter.count(file, Util.getFileEncoding(file));
} else {
return new CountResult(file, file.getName(), null, null, 0, 0, 0);
}
}