I came to this repo from the stackoverflow posting
Between SafePerson and SafeTwitterAccount , there is method calls in the order
- SafeTwitterAccount.addFollower(SafePerson follower) => follower.startFollowingTwitter(this);
- SafePerson.startFollowingTwitter(SafeTwitterAccount account) => account.addFollower(this);
will these not lead to an infinite loop?
I came to this repo from the stackoverflow posting
Between SafePerson and SafeTwitterAccount , there is method calls in the order
will these not lead to an infinite loop?