Suppress java/unchecked-cast-in-equals warning for JSONObject.Null.equals()

This commit is contained in:
Artem Smotrakov 2021-05-31 15:00:29 +02:00
parent 97023e1098
commit b48abe6558
No known key found for this signature in database
GPG Key ID: 4650792B0F6DA6D3

View File

@ -128,6 +128,7 @@ public class JSONObject {
* null.
*/
@Override
@SuppressWarnings("lgtm[java/unchecked-cast-in-equals]")
public boolean equals(Object object) {
return object == null || object == this;
}