Skip to content

Commit

Permalink
Remove useless code for ComponentTreeHolder
Browse files Browse the repository at this point in the history
Summary: as per title

Reviewed By: adityasharat

Differential Revision: D49501641

fbshipit-source-id: 0e81886da74683b64802a6e35d54c60708e34042
  • Loading branch information
Andrew Wang authored and facebook-github-bot committed Sep 25, 2023
1 parent 3ac88e7 commit ad720b0
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ public static class Builder {
private boolean incrementalMount = true;
private boolean isReconciliationEnabled = ComponentsConfiguration.isReconciliationEnabled;
private boolean isLayoutDiffingEnabled = ComponentsConfiguration.isLayoutDiffingEnabled;
private int recyclingMode;
private boolean visibilityProcessingEnabled = true;
private @Nullable LithoLifecycleProvider parentLifecycle;
private @Nullable ErrorEventHandler errorEventHandler;
Expand Down Expand Up @@ -189,11 +188,6 @@ public Builder isReconciliationEnabled(boolean isEnabled) {
return this;
}

public Builder recyclingMode(int recyclingMode) {
this.recyclingMode = recyclingMode;
return this;
}

public Builder isLayoutDiffingEnabled(boolean isEnabled) {
isLayoutDiffingEnabled = isEnabled;
return this;
Expand Down

0 comments on commit ad720b0

Please sign in to comment.