Thomas Vachuska

Fixing a bug in DefaultNextObjective copy constructor.

Change-Id: Ifa5383a88795c15cc41fd8416bf27593066e146c
......@@ -178,6 +178,7 @@ public final class DefaultNextObjective implements NextObjective {
this.type = objective.type();
this.id = objective.id();
this.treatments = ImmutableList.copyOf(objective.next());
this.listBuilder.addAll(objective.next());
this.meta = objective.meta();
this.appId = objective.appId();
this.op = objective.op();
......