polish swf 1094
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user