Skip to content

Instantly share code, notes, and snippets.

@oyvindrobertsen
Last active December 12, 2015 01:29
Show Gist options
  • Save oyvindrobertsen/4691871 to your computer and use it in GitHub Desktop.
Save oyvindrobertsen/4691871 to your computer and use it in GitHub Desktop.
public boolean isMotherOf(Person arg){
try {
this.equals(arg.mother);
this.children.contains(arg);
} catch (NullPointerException npe) {
return false;
}
return this.equals(arg.mother) && this.children.contains(arg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment