Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Donn committed Nov 27, 2024
1 parent 174df6e commit 5a486ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public static LocalRelationshipCriterion buildRelationshipFieldCriterion(LocalRe
} else if (!(obj instanceof List) || ((List) obj).isEmpty() || !(((List) obj).get(0) instanceof RecordTemplate)) {
return;
}
// filter out all non-primitive, non-relationship fields
// filter out all non-primitive, non-relationship, non-list fields
if (!(obj instanceof List)) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ public void testExtractRelationshipsFromAspect() throws URISyntaxException {
// relationshipFoos -> [foo1, foo2]
// relationshipBars -> [bar1]
// moreRelationshipFoos -> not present
// nonPrimitiveNonRelationshipField -> barUrn
// nonPrimitiveNonRelationshipField -> commonAspect2
// }
// expect:
// [[foo1, foo2], [bar1]]
Expand Down

0 comments on commit 5a486ae

Please sign in to comment.