// remove it and add the instruction for this parameter
if (instructions.contains(instruction) == true) {
// Matching element REUSE instruction found.
Instruction tempInstruction;
int position = instructions.indexOf(instruction);
tempInstruction = (Instruction) instructions.get(position);
if (tempInstruction.getElementName().compareTo(instruction.getElementName()) == 0) {
instructions.remove(position);
}
}
else {
logger.debug("No matching element REUSE instruction found: " + elementName);