Skip to content

Commit

Permalink
fix recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
mmews committed Feb 21, 2024
1 parent 66733bc commit 32cdddd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private boolean isPoly(PropertyAssignment pa) {
* Convenience method for {@link #isRootPoly(Expression)}, accepting any type of EObject.
*/
boolean isRootPoly(EObject obj) {
return (obj instanceof Expression) ? isRootPoly(obj) : false;
return (obj instanceof Expression) ? isRootPoly((Expression) obj) : false;
}

/**
Expand Down

0 comments on commit 32cdddd

Please sign in to comment.