mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Remove unused ReactInvalidPropertyException (#50567)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/50567 This exception is unused, let's remove it. Changelog: [Internal] [Changed] - Reviewed By: mdvacca Differential Revision: D72646262 fbshipit-source-id: 728a81633d8c8f7c183b16cfd3a8c4ba68690c42
This commit is contained in:
committed by
Facebook GitHub Bot
parent
216b297ab8
commit
41f6f6c448
@@ -4056,10 +4056,6 @@ public abstract interface class com/facebook/react/uimanager/ReactCompoundViewGr
|
||||
public abstract fun interceptsTouchEvent (FF)Z
|
||||
}
|
||||
|
||||
public final class com/facebook/react/uimanager/ReactInvalidPropertyException : java/lang/RuntimeException {
|
||||
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
|
||||
}
|
||||
|
||||
public abstract interface class com/facebook/react/uimanager/ReactOverflowView {
|
||||
public abstract fun getOverflow ()Ljava/lang/String;
|
||||
}
|
||||
|
||||
-16
@@ -1,16 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
package com.facebook.react.uimanager
|
||||
|
||||
public class ReactInvalidPropertyException(
|
||||
property: String,
|
||||
value: String,
|
||||
expectedValues: String
|
||||
) :
|
||||
RuntimeException(
|
||||
"Invalid React property `$property` with value `$value`, expected $expectedValues")
|
||||
Reference in New Issue
Block a user