We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a670600 commit 4ddb804Copy full SHA for 4ddb804
litho-rendercore-transitions/src/main/java/com/facebook/litho/animation/PropertyHandle.java
@@ -17,6 +17,7 @@
17
package com.facebook.litho.animation;
18
19
import com.facebook.litho.TransitionId;
20
+import javax.annotation.Nullable;
21
22
/**
23
* A pair of transition key and {@link AnimatedProperty} which can be used to identify a single
@@ -41,7 +42,7 @@ public AnimatedProperty getProperty() {
41
42
}
43
44
@Override
- public boolean equals(Object o) {
45
+ public boolean equals(@Nullable Object o) {
46
if (this == o) {
47
return true;
48
0 commit comments