Skip to content

Commit

Permalink
fbandroid/libraries/rendercore/rendercore-transitions/src/main/java/c…
Browse files Browse the repository at this point in the history
…om/facebook/litho/animation/PropertyAnimation.java

Reviewed By: jocelynluizzi13

Differential Revision: D60279650

fbshipit-source-id: 5892839cfb153994da9c2fa21cce2b128647965b
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Jul 26, 2024
1 parent 654d37a commit 78be58c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.facebook.litho.animation;

import com.facebook.litho.TransitionId;
import javax.annotation.Nullable;

/**
* Represents the animation specification for a single property: - What transition key it's for -
Expand Down Expand Up @@ -50,7 +51,7 @@ public float getTargetValue() {
}

@Override
public boolean equals(Object o) {
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
}
Expand Down

0 comments on commit 78be58c

Please sign in to comment.