(String filePath)
| 84 | } |
| 85 | |
| 86 | static String[][] loadRsv(String filePath) throws IOException { |
| 87 | Objects.requireNonNull(filePath); |
| 88 | return decodeRsv(Files.readAllBytes(Paths.get(filePath))); |
| 89 | } |
| 90 | |
| 91 | static void appendRsv(String[][] rows, String filePath) throws IOException { |
| 92 | appendRsv(rows, filePath, false); |
no test coverage detected