Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. public boolean contains(Object o) {
  2.         if (!(o instanceof Byte))
  3.             return false;
  4.        
  5.         if (indexOf((byte)o) != -1)
  6.             return true;
  7.         else
  8.             return false;
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement