pendingSQLWriter.writeHTML("sql", null, changesToRun, rootChangeLogName);
if (recentChanges.size() > MAX_RECENT_CHANGE) {
recentChanges = recentChanges.subList(0, MAX_RECENT_CHANGE);
}
recentChangesWriter.writeHTML("index", recentChanges, null, rootChangeLogName);
}
private void copyFile(String fileToCopy, File rootOutputDir) throws IOException {
InputStream inputStream = getClass().getClassLoader().getResourceAsStream(fileToCopy);