Read all lines. @param reader the reader @return the list
(final Reader reader)
| 215 | * @return the list |
| 216 | */ |
| 217 | public static List<String> readAllLines(final Reader reader) { |
| 218 | return FileUtil.readAllLines(reader, false); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Reads all lines from given reader to a list of strings. |
no test coverage detected