Skip to content

Instantly share code, notes, and snippets.

@kaansonmezoz
Created March 25, 2020 21:28
Show Gist options
  • Save kaansonmezoz/d22dc90527b0c609d9aeaf634162cf61 to your computer and use it in GitHub Desktop.
Save kaansonmezoz/d22dc90527b0c609d9aeaf634162cf61 to your computer and use it in GitHub Desktop.
private boolean isFriendOf(User user, User loggedUser) {
for (User friend: user.getFriends()) {
if (friend.equals(loggedUser)) {
return true;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment