polish swf 1094

This commit is contained in:
Keith Donald
2009-04-14 20:31:33 +00:00
parent 3bc28ccab3
commit 4be18d8a65
3 changed files with 5 additions and 5 deletions

View File

@@ -42,9 +42,9 @@ public abstract class AbstractActionModel extends AbstractModel {
// not mergeable
}
protected void fillCopy(final AbstractActionModel copy) {
copy.setOutputs(copyList(attributes));
}
protected void fillCopy(AbstractActionModel copy) {
copy.setOutputs(copyList(attributes));
}
/**
* @return the attributes

View File

@@ -52,7 +52,7 @@ public class OutputModel extends AbstractMappingModel {
}
public Model createCopy() {
InputModel copy = new InputModel(getName(), getValue());
OutputModel copy = new OutputModel(getName(), getValue());
super.fillCopy(copy);
return copy;
}

View File

@@ -68,7 +68,7 @@ public class SubflowStateModel extends AbstractTransitionableStateModel {
}
public Model createCopy() {
final SubflowStateModel copy = new SubflowStateModel(getId(), subflow);
SubflowStateModel copy = new SubflowStateModel(getId(), subflow);
super.fillCopy(copy);
copy.setSubflowAttributeMapper(subflowAttributeMapper);
copy.setInputs(copyList(inputs));