Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ...
- public int hashCode(Color color) {
- return (color.getAlpha() << 24) | (color.getRed() << 16) | (color.getGreen() << 8) | color.getBlue();
- }
- ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement