fix warning for MatchingCacheKey.equals()
This commit is contained in:
parent
7ef611945d
commit
3c3d68d073
@ -63,6 +63,9 @@ class MatchingCacheKey {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj == null)
|
||||
return false;
|
||||
|
||||
if (this == obj)
|
||||
return true;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user