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/DataFlowGraph.java

Reviewed By: jocelynluizzi13

Differential Revision: D68434875

fbshipit-source-id: 4d186e9482b0d3ec5bf11249d585aba30d72e85d
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Jan 21, 2025
1 parent a31b1be commit 0e883ed
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class DataFlowGraph {

private static final String STATE_NOT_INTIALIZED_FOR_VALUE_NODE =
"DataFlowGraph:StateNotInitializedForValueNode";
private static DataFlowGraph sInstance;
@Nullable private static DataFlowGraph sInstance;

public static DataFlowGraph getInstance() {
if (sInstance == null) {
Expand All @@ -67,7 +67,6 @@ private static class NodeState {
*/
@VisibleForTesting
public static void setInstance(@Nullable DataFlowGraph dataFlowGraph) {
// NULLSAFE_FIXME[Field Not Nullable]
sInstance = dataFlowGraph;
}

Expand Down

0 comments on commit 0e883ed

Please sign in to comment.