addLinesAfterIdx method
Adds a set of line after the specified index.
Implementation
void addLinesAfterIdx(AFCommandContext context, int idx, List<String> toInsert) {
lines.insertAll(idx+1, toInsert);
}
Adds a set of line after the specified index.
void addLinesAfterIdx(AFCommandContext context, int idx, List<String> toInsert) {
lines.insertAll(idx+1, toInsert);
}