Skip to content

Commit

Permalink
adding nullable annotation to LithoStartupLogger
Browse files Browse the repository at this point in the history
Summary: optional param should be marked as Nullable

Differential Revision: D27927555

fbshipit-source-id: c061c8182295cdacbb9f70b1dd420c06c54d709f
  • Loading branch information
pcarrillome authored and facebook-github-bot committed Apr 22, 2021
1 parent 614c940 commit d2b3dd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ static void createInitialState(
@Prop(optional = true) boolean canMeasureRecycler,
// Don't use this. If false, off incremental mount for all subviews of this Recycler.
@Prop(optional = true) boolean incrementalMount,
@Prop(optional = true) LithoStartupLogger startupLogger,
@Prop(optional = true) @Nullable LithoStartupLogger startupLogger,
@Prop(optional = true) StickyHeaderControllerFactory stickyHeaderControllerFactory) {

RecyclerBinderConfiguration binderConfiguration =
Expand Down

0 comments on commit d2b3dd0

Please sign in to comment.