mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fix missing space in ReactPropertyException message
Summary: Before ``` "If you want to override a property, don't addthe ReactProp annotation to the property in the subclass", ``` After ``` "If you want to override a property, don't add the ReactProp annotation to the property in the subclass", ``` Reviewed By: michaeltangelo Differential Revision: D37526541 fbshipit-source-id: 850424a1b5a5aeb0abe64b6defcf6db96d2000cc
This commit is contained in:
committed by
Facebook GitHub Bot
parent
e23520bb56
commit
24560b6718
+1
-1
@@ -593,7 +593,7 @@ public class ReactPropertyProcessor extends AbstractProcessor {
|
||||
+ " has already registered a property named \""
|
||||
+ name
|
||||
+ "\". If you want to override a property, don't add"
|
||||
+ "the @ReactProp annotation to the property in the subclass",
|
||||
+ " the @ReactProp annotation to the property in the subclass",
|
||||
propertyInfo);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user