Skip to content

Instantly share code, notes, and snippets.

@tomasmalmsten
Created April 22, 2018 10:55
Show Gist options
  • Save tomasmalmsten/01fd26f29ee0f1671000e4819400539e to your computer and use it in GitHub Desktop.
Save tomasmalmsten/01fd26f29ee0f1671000e4819400539e to your computer and use it in GitHub Desktop.
Clean Code - Functions snippet two
public int compareTo(Object _other) throws ClassCastException, NullPointerException {
final ExampleClass otherExampleClass = (ExampleClass) _other;
return compareMeTo(otherExampleClass);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment