/**
  * Stop following a user
  *
  * @param userId The user's ID
  * @return The users the user follows without including the user the user stopped following.
  */
 public Users stopFollowingUser(long userId, @SessionToken String sessionToken) {
   checkId(userId);
   return mUserInterface.stopFollowingUser(userId, sessionToken);
 }