(File file)
| 3064 | } |
| 3065 | |
| 3066 | static String readText(File file) throws IOException { |
| 3067 | try (FileInputStream in = new FileInputStream(file)) { |
| 3068 | return readStream(in); |
| 3069 | } |
| 3070 | } |
| 3071 | |
| 3072 | public static void readBuffer(InputStream is, byte[] buffer) throws IOException { |
| 3073 | int left = buffer.length; |
no test coverage detected