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 0736aff commit 66733bc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ abstract class AbstractPolyProcessor extends AbstractProcessor {
*/
boolean isPoly(EObject obj) {
if (obj instanceof Expression) {
return isPoly(obj);
return isPoly((Expression) obj);
}
if (obj instanceof PropertyAssignment) {
return isPoly(obj);
return isPoly((PropertyAssignment) obj);
}
return false;
}
Expand Down

0 comments on commit 66733bc

Please sign in to comment.