Skip to content

Commit

Permalink
#2196 Make the constructor of OperandsBasedSet1 more liberal
Browse files Browse the repository at this point in the history
  • Loading branch information
homedirectory committed Mar 4, 2024
1 parent 8adbbe3 commit dd0f493
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
import ua.com.fielden.platform.eql.stage2.operands.OperandsBasedSet2;

public class OperandsBasedSet1 implements ISetOperand1<OperandsBasedSet2> {
private final List<ISingleOperand1<? extends ISingleOperand2<?>>> operands;
private final List<? extends ISingleOperand1<? extends ISingleOperand2<?>>> operands;

public OperandsBasedSet1(final List<ISingleOperand1<? extends ISingleOperand2<?>>> operands) {
public OperandsBasedSet1(final List<? extends ISingleOperand1<? extends ISingleOperand2<?>>> operands) {
this.operands = operands;
}

Expand Down Expand Up @@ -51,4 +51,4 @@ public boolean equals(final Object obj) {

return Objects.equals(operands, other.operands);
}
}
}

0 comments on commit dd0f493

Please sign in to comment.