We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b4a24 commit 62bd67cCopy full SHA for 62bd67c
pact/pact-common/src/main/java/eu/stratosphere/pact/common/plan/Plan.java
@@ -71,7 +71,7 @@ public class Plan implements Visitable<Contract>
71
*/
72
public Plan(Collection<GenericDataSink> sinks, String jobName)
73
{
74
- this.sinks = sinks;
+ this.sinks = new ArrayList<GenericDataSink>(sinks);
75
this.jobName = jobName;
76
this.planConfiguration = new PlanConfiguration();
77
}
0 commit comments