Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for (int i = 0; i < userList.size(); i++)
- {
- Gebruiker user = userList.get(i);
- String usernick = user.getNick();
- String userhost = user.getHost();
- String realname = user.getRealName();
- if (usernick.equals(nick) && login.equals(realname) && userhost.equals(host))
- {
- return user;
- }
- }
- return null;
Advertisement
Add Comment
Please, Sign In to add comment