From 24560b67184da00e05491af38289865c4b934ee8 Mon Sep 17 00:00:00 2001 From: Mark Verlingieri Date: Wed, 29 Jun 2022 14:33:23 -0700 Subject: [PATCH] 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 --- .../com/facebook/react/processing/ReactPropertyProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java b/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java index 6fbd70d42f2cdc..21829b73f709cc 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java +++ b/ReactAndroid/src/main/java/com/facebook/react/processing/ReactPropertyProcessor.java @@ -593,7 +593,7 @@ public void addProperty(PropertyInfo propertyInfo) throws ReactPropertyException + " 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); }