(File file)
| 228 | } |
| 229 | |
| 230 | static public String[] loadStrings(File file) { |
| 231 | InputStream is = null; |
| 232 | try { |
| 233 | is = createInput(file); |
| 234 | if (is != null) return loadStrings(is); |
| 235 | return null; |
| 236 | } finally { |
| 237 | IOUtils.closeQuietly(is); |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | static public String[] loadStrings(InputStream input) { |
| 242 | BufferedReader reader = null; |
no test coverage detected