File tree Expand file tree Collapse file tree 2 files changed +4
-11
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react/views/view Expand file tree Collapse file tree 2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -7225,10 +7225,3 @@ public class com/facebook/react/views/view/ReactViewManager : com/facebook/react
7225
7225
public final class com/facebook/react/views/view/ReactViewManager$Companion {
7226
7226
}
7227
7227
7228
- public final class com/facebook/react/views/view/ViewGroupClickEvent : com/facebook/react/uimanager/events/Event {
7229
- public fun <init> (I)V
7230
- public fun <init> (II)V
7231
- public fun canCoalesce ()Z
7232
- public fun getEventName ()Ljava/lang/String;
7233
- }
7234
-
Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ import com.facebook.react.uimanager.common.ViewUtil
13
13
import com.facebook.react.uimanager.events.Event
14
14
15
15
/* * Represents a Click on the ReactViewGroup */
16
- public class ViewGroupClickEvent (surfaceId : Int , viewId : Int ) :
16
+ internal class ViewGroupClickEvent (surfaceId : Int , viewId : Int ) :
17
17
Event <ViewGroupClickEvent >(surfaceId, viewId) {
18
18
19
19
@Deprecated(" Use the constructor with surfaceId and viewId parameters." )
20
- public constructor (viewId: Int ) : this (ViewUtil .NO_SURFACE_ID , viewId)
20
+ constructor (viewId: Int ) : this (ViewUtil .NO_SURFACE_ID , viewId)
21
21
22
- public override fun getEventName (): String = EVENT_NAME
22
+ override fun getEventName (): String = EVENT_NAME
23
23
24
- public override fun canCoalesce (): Boolean = false
24
+ override fun canCoalesce (): Boolean = false
25
25
26
26
protected override fun getEventData (): WritableMap = Arguments .createMap()
27
27
You can’t perform that action at this time.
0 commit comments