Skip to content

Commit

Permalink
remove previously-added-but-now-unused Conditions ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Nov 16, 2024
1 parent 8b21fcb commit 58d8c96
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,6 @@ public Conditions(boolean onlyNeedToPassOnce, Requirement... conditions)
this.logicType = LogicType.AND;
}

public Conditions(boolean onlyNeedToPassOnce, LogicType logicType, ArrayList<Requirement> conditions)
{
assert(conditions.stream().noneMatch(Objects::isNull));

this.conditions = new ArrayList<>(conditions);
this.logicType = logicType;
this.onlyNeedToPassOnce = onlyNeedToPassOnce;
}

@Override
@Nonnull
public String getDisplayText()
Expand Down

0 comments on commit 58d8c96

Please sign in to comment.