File tree Expand file tree Collapse file tree
Microsoft.ReactNative/Fabric Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,12 +89,6 @@ facebook::react::Props::Shared AbiComponentDescriptor::cloneProps(
8989 return ShadowNodeT::defaultSharedProps ();
9090 }
9191
92- if constexpr (std::is_base_of_v<facebook::react::YogaLayoutableShadowNode, ShadowNodeT>) {
93- if (facebook::react::ReactNativeFeatureFlags::excludeYogaFromRawProps ()) {
94- rawProps.filterYogaStylePropsInDynamicConversion ();
95- }
96- }
97-
9892 rawProps.parse (rawPropsParser_);
9993
10094 // Call old-style constructor
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ class StringBuilder {
2525 return m_ss.str ().length ();
2626 }
2727
28- char * Finalize () {
28+ char * Finalize () {
2929 std::string str = m_ss.str ();
3030 memcpy (m_buffer, str.c_str (), str.length ());
31- m_buffer[str.length ()] = ' \0 ' ; // IMPORTANT: Add null terminator
32- return m_buffer; // Returns char* that will convert to std::string
33- }
31+ m_buffer[str.length ()] = ' \0 ' ; // IMPORTANT: Add null terminator
32+ return m_buffer; // Returns char* that will convert to std::string
33+ }
3434
3535 char *m_buffer;
3636 std::stringstream m_ss;
You can’t perform that action at this time.
0 commit comments