Skip to content

Commit 29b2877

Browse files
committed
Simplify if statement
1 parent 88c682a commit 29b2877

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

discovery/src/main/java/com/facebook/airlift/discovery/client/ServiceTypeImpl.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,7 @@ public boolean equals(Object o)
5252

5353
ServiceType that = (ServiceType) o;
5454

55-
if (!value.equals(that.value())) {
56-
return false;
57-
}
58-
59-
return true;
55+
return value.equals(that.value());
6056
}
6157

6258
@Override

0 commit comments

Comments
 (0)