Description
org.apache.commons.io.LineReader should implement the AutoCloseable interface in order to allow the use of try-with-resources statement such as in the following example:
try (final LineIterator itr = new LineIterator(new FileReader("c:/temp/readme.txt"))) {
while (itr.hasNext()) {
System.out.println(itr.next());
}
}