Skip to content

Commit

Permalink
changed data structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ystrict committed Aug 14, 2023
1 parent 0c52b83 commit f5ac157
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ public <T> T accept(RegoVisitor<T> visitor) {
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public static class ArrayTerm extends ScalarTerm<List<ScalarTerm<?>>> {
public static class ArrayTerm extends Term {

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

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

0 comments on commit f5ac157

Please sign in to comment.