Skip to content

Commit

Permalink
Collection in collection support (#28)
Browse files Browse the repository at this point in the history
Added ability to have collection in collection
  • Loading branch information
ystrict authored Aug 16, 2023
1 parent 895563b commit 6b9132f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public <T> T accept(RegoVisitor<T> visitor) {
@EqualsAndHashCode(callSuper = true)
public static class ArrayTerm extends Term {

List<ScalarTerm<?>> value;
List<Term> value;

@Override
public <T> T accept(RegoVisitor<T> visitor) {
Expand All @@ -115,7 +115,7 @@ public <T> T accept(RegoVisitor<T> visitor) {
@EqualsAndHashCode(callSuper = true)
public static class SetTerm extends Term {

Set<ScalarTerm<?>> value;
Set<Term> value;

@Override
public <T> T accept(RegoVisitor<T> visitor) {
Expand Down

0 comments on commit 6b9132f

Please sign in to comment.