xia0c created IO-622:
------------------------
Summary: FileUtils.readLines incompatible issue
Key: IO-622
URL: https://issues.apache.org/jira/browse/IO-622
Project: Commons IO
Issue Type: Bug
Affects Versions: 2.6, 2.5, 2.4, 2.3
Reporter: xia0c
Hi,
The following code snippets throw an incompatible issue when I try to rolling
update Commons IO to 2.6. It works well before 2.3.
{code:java}
@Test
public void DemoTest(){
List<String> l = new ArrayList();
File TestFile = new File("TestFile");
try {
l.addAll(org.apache.commons.io.FileUtils.readLines(TestFile, null));
} catch (IOException e) {
e.printStackTrace();
}
}
{code}
Thanks a lot.
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)