提交 1b9fa7f2 编写于 作者: A Aljoscha Krettek

Make the placeholders in WorksetIteration non-final

This is needed for the magic that happens in the scala frontend.
上级 3b496073
......@@ -248,11 +248,11 @@ public class WorksetIteration extends DualInputContract<AbstractStub> implements
* Specialized contract to use as a recognizable place-holder for the working set input to the
* step function, when composing the nested data flow.
*/
public static final class WorksetPlaceHolder extends Contract {
public static class WorksetPlaceHolder extends Contract {
private final WorksetIteration containingIteration;
private WorksetPlaceHolder(WorksetIteration container) {
public WorksetPlaceHolder(WorksetIteration container) {
super("Workset Place Holder");
this.containingIteration = container;
}
......@@ -277,11 +277,11 @@ public class WorksetIteration extends DualInputContract<AbstractStub> implements
* Specialized contract to use as a recognizable place-holder for the solution set input to the
* step function, when composing the nested data flow.
*/
public static final class SolutionSetPlaceHolder extends Contract {
public static class SolutionSetPlaceHolder extends Contract {
private final WorksetIteration containingIteration;
private SolutionSetPlaceHolder(WorksetIteration container) {
public SolutionSetPlaceHolder(WorksetIteration container) {
super("Solution Set Place Holder");
this.containingIteration = container;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册