addLinesAtEnd method

void addLinesAtEnd(
  1. AFCommandContext context,
  2. List<String> toInsert
)

Adds a set of lines at the end of the file.

Implementation

void addLinesAtEnd(AFCommandContext context, List<String> toInsert) {
  modified = true;
  lines.addAll(toInsert);
}