Mattie

Untitled

Dec 20th, 2010
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1.         for (int i = 0; i < userList.size(); i++)
  2.         {
  3.             Gebruiker user = userList.get(i);
  4.             String usernick = user.getNick();
  5.             String userhost = user.getHost();
  6.             String realname = user.getRealName();
  7.  
  8.             if (usernick.equals(nick) && login.equals(realname) && userhost.equals(host))
  9.             {
  10.                 return user;
  11.             }
  12.         }
  13.         return null;
Advertisement
Add Comment
Please, Sign In to add comment