예제 #1
0
  public void unlike(Rating r) {

    userLikes.remove(r);

    if (userUnlikes.add(r)) {
      r.unlike(this);
    }
  }