Guest User

Untitled

a guest
Jul 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public int getStaffIndex(String checker) {
  2. for(int i = 0; i <= STAFFSTRING.length; i++)
  3. if(STAFFSTRING[i].toLowerCase().equals(checker.toLowerCase())
  4. return true;
  5. return false;
  6. }
Add Comment
Please, Sign In to add comment