Skip to content

Instantly share code, notes, and snippets.

@m0ar
Created February 18, 2015 12:07
Show Gist options
  • Save m0ar/cc28978be36e1a103ae5 to your computer and use it in GitHub Desktop.
Save m0ar/cc28978be36e1a103ae5 to your computer and use it in GitHub Desktop.
public E get(E e) {
if(e == null)
return null;
Entry entry = find(e, root, null);
return (entry == null) ? null : entry.element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment