fix warning for MatchingCacheKey.equals()

This commit is contained in:
Hannes Janetzek 2013-09-28 22:43:08 +02:00
parent 7ef611945d
commit 3c3d68d073

View File

@ -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;