Skip to content

Commit

Permalink
fbandroid/libraries/components/litho-rendercore-transitions/src/main/…
Browse files Browse the repository at this point in the history
…java/com/facebook/litho/dataflow/GraphBinding.java

Reviewed By: jocelynluizzi13

Differential Revision: D68435210

fbshipit-source-id: c36293d16b632d1529dc035719687f8cac2ba078
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Jan 21, 2025
1 parent bfd575a commit 27aff84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import androidx.annotation.VisibleForTesting;
import com.facebook.infer.annotation.Nullsafe;
import java.util.ArrayList;
import javax.annotation.Nullable;

/**
* Defines the relationship of a set of input values to a set of output values where the values from
Expand All @@ -34,8 +35,7 @@ public final class GraphBinding {
private final DataFlowGraph mDataFlowGraph;
private final Bindings mBindings = new Bindings();
private final ArrayList<ValueNode> mAllNodes = new ArrayList<>();
// NULLSAFE_FIXME[Field Not Initialized]
private BindingListener mListener;
@Nullable private BindingListener mListener;
private boolean mIsActive = false;
private boolean mHasBeenActivated = false;

Expand Down

0 comments on commit 27aff84

Please sign in to comment.