We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0764054 commit 78f6caaCopy full SHA for 78f6caa
1 file changed
src/main/java/com/github/dockerjava/core/NameParser.java
@@ -51,7 +51,6 @@ public boolean equals(Object obj) {
51
if (obj instanceof ReposTag) {
52
ReposTag other = (ReposTag) obj;
53
return new EqualsBuilder().append(repos, other.repos).append(tag, other.tag).isEquals();
54
-
55
} else {
56
return false;
57
}
@@ -125,7 +124,6 @@ public boolean equals(Object obj) {
125
124
HostnameReposName other = (HostnameReposName) obj;
126
return new EqualsBuilder().append(hostname, other.hostname).append(reposName, other.reposName)
127
.isEquals();
128
129
130
131
0 commit comments