提交 15812e75 编写于 作者: V vjuranek

Merge pull request #508 from lvotypko/update-actions

Update transient actions of configurations in the same way as actions of matrix project
......@@ -77,6 +77,13 @@ public class MatrixConfiguration extends Project<MatrixConfiguration,MatrixRun>
// directory name is not a name for us --- it's taken from the combination name
super.onLoad(parent, combination.toString());
}
@Override
protected void updateTransientActions(){
// This method is exactly the same as in {@link #AbstractProject}.
// Enabling to call this method from MatrixProject is the only reason for overriding.
super.updateTransientActions();
}
@Override
public boolean isConcurrentBuild() {
......
......@@ -423,6 +423,15 @@ public class MatrixProject extends AbstractProject<MatrixProject,MatrixBuild> im
return r;
}
@Override
protected void updateTransientActions(){
super.updateTransientActions();
// update all transient actions in configurations too.
for(MatrixConfiguration configuration: getActiveConfigurations()){
configuration.updateTransientActions();
}
}
/**
* Gets the subset of {@link AxisList} that are not system axes.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册