(String dir, boolean force, byte[] buffer, String res, String dest, Log log)
| 421 | } |
| 422 | |
| 423 | private static void copyResource(String dir, boolean force, byte[] buffer, String res, String dest, Log log) throws IOException { |
| 424 | File out = new File(dir, dest); |
| 425 | try (InputStream is = ServerMain.class.getResourceAsStream("/io/questdb/site/" + res)) { |
| 426 | if (is != null) { |
| 427 | copyInputStream(force, buffer, out, is, log); |
| 428 | } |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | private static void copyResource(String dir, boolean force, byte[] buffer, String res, Log log) throws IOException { |
| 433 | copyResource(dir, force, buffer, res, res, log); |
no test coverage detected