Skip to content
Snippets Groups Projects
Unverified Commit c21d1903 authored by mueller-ma's avatar mueller-ma Committed by GitHub
Browse files

Remove hashCode() from AbstractConnection (#1041)


Closes #1039

Signed-off-by: default avatarmueller-ma <mueller-ma@users.noreply.github.com>
parent 435b34af
No related branches found
No related tags found
No related merge requests found
...@@ -95,14 +95,4 @@ public abstract class AbstractConnection implements Connection { ...@@ -95,14 +95,4 @@ public abstract class AbstractConnection implements Connection {
return false; return false;
} }
} }
@Override
public int hashCode() {
int result = 17;
result = 31 * result + mConnectionType;
result = 31 * result + mBaseUrl.hashCode();
result = 31 * result + (mUserName != null ? mUserName.hashCode() : 0);
result = 31 * result + (mPassword != null ? mPassword.hashCode() : 0);
return result;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment