Skip to content

Instantly share code, notes, and snippets.

@AdrianMachado
Created October 18, 2017 15:31
Show Gist options
  • Save AdrianMachado/5cb09aad1b918649f37c85b40f3c1a5f to your computer and use it in GitHub Desktop.
Save AdrianMachado/5cb09aad1b918649f37c85b40f3c1a5f to your computer and use it in GitHub Desktop.
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Setting<?> setting = (Setting<?>) o;
return Objects.equals(key, setting.key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment