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