addLinesAtEnd method
Adds a set of lines at the end of the file.
Implementation
void addLinesAtEnd(AFCommandContext context, List<String> toInsert) {
modified = true;
lines.addAll(toInsert);
}
Adds a set of lines at the end of the file.
void addLinesAtEnd(AFCommandContext context, List<String> toInsert) {
modified = true;
lines.addAll(toInsert);
}