(File p_readFile_0_)
| 1284 | } |
| 1285 | |
| 1286 | public static String readFile(File p_readFile_0_) throws IOException { |
| 1287 | FileInputStream fileinputstream = new FileInputStream(p_readFile_0_); |
| 1288 | return readInputStream(fileinputstream, "ASCII"); |
| 1289 | } |
| 1290 | |
| 1291 | public static String readInputStream(InputStream p_readInputStream_0_) throws IOException { |
| 1292 | return readInputStream(p_readInputStream_0_, "ASCII"); |
nothing calls this directly
no test coverage detected