Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Commit 9d6d7276 authored by László Dávid's avatar László Dávid
Browse files

Call to equals() comparing different types

I have found the bug with the FindBugs tool,
the description is:

Call to equals() comparing different types
This method calls equals(Object) on two references of
different class types with no common subclasses.
Therefore, the objects being compared are unlikely
to be members of the same class at runtime
(unless some application classes were not analyzed,
or dynamic class loading can occur at runtime).
According to the contract of equals(), objects of
different classes should always compare as unequal;
therefore, according to the contract defined by
java.lang.Object.equals(Object), the result of this
comparison will always be false at runtime.

Bug kind and pattern: EC - EC_UNRELATED_TYPES

Change-Id: I2d9521e8fd67d249af4c9907e90f2f019336265c
parent d2d2bc2f
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment