Advertisement
HackedClint

Untitled

Jul 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public Module get(final Class p) {
  2. for (final Module m : this.modules) {
  3. if (m.getClass().equals(p)) {
  4. return m;
  5. }
  6. }
  7. return null;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement