for (final String line : section.getLines()) {
if (!first) {
final List<String> cols = EncogFileSection.splitColumns(line);
final String name = cols.get(0);
final int childCount = Integer.parseInt(cols.get(1));
ScriptOpcode opcode = new ScriptOpcode(name, childCount);
this.script.getOpcodes().add(opcode);
} else {
first = false;
}
}