From 920aa31d01712c74d5973a352459f52719b530d8 Mon Sep 17 00:00:00 2001 From: Eric Rozell Date: Mon, 5 Mar 2018 13:23:18 -0500 Subject: [PATCH] chore(ReactNative): remove unused classes --- .../ReactNative.Net46.csproj | 1 - .../Touch/IOnInterceptTouchEventListener.cs | 24 ------------------- ReactWindows/ReactNative/ReactNative.csproj | 1 - .../Touch/IOnInterceptTouchEventListener.cs | 24 ------------------- 4 files changed, 50 deletions(-) delete mode 100644 ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs delete mode 100644 ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs diff --git a/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj b/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj index 44a1b2bd94e..5bed77ba750 100644 --- a/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj +++ b/ReactWindows/ReactNative.Net46/ReactNative.Net46.csproj @@ -151,7 +151,6 @@ - NullLoggingActivityBuilderExtensions.tt diff --git a/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs b/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs deleted file mode 100644 index efb3273ec84..00000000000 --- a/ReactWindows/ReactNative.Net46/Touch/IOnInterceptTouchEventListener.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Windows.Input; - -namespace ReactNative.Touch -{ - /// - /// A listener for intercepting touch events. - /// - public interface IOnInterceptTouchEventListener - { - /// - /// Called to evaluate touch interception occurs on a view parent. - /// - /// The sender of the event. - /// - /// The motion event being dispatched down the hierarchy. - /// - /// - /// true to steal the motion event from the children and - /// dispatch to this view, or false to allow the motion - /// event to be delivered to the child view. - /// - bool OnInterceptTouchEvent(object sender, MouseButtonEventArgs @event); - } -} diff --git a/ReactWindows/ReactNative/ReactNative.csproj b/ReactWindows/ReactNative/ReactNative.csproj index bbd80e8af41..25c956c901a 100644 --- a/ReactWindows/ReactNative/ReactNative.csproj +++ b/ReactWindows/ReactNative/ReactNative.csproj @@ -134,7 +134,6 @@ - diff --git a/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs b/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs deleted file mode 100644 index 37beea9b0fa..00000000000 --- a/ReactWindows/ReactNative/Touch/IOnInterceptTouchEventListener.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Windows.UI.Xaml.Input; - -namespace ReactNative.Touch -{ - /// - /// A listener for intercepting touch events. - /// - public interface IOnInterceptTouchEventListener - { - /// - /// Called to evaluate touch interception occurs on a view parent. - /// - /// The sender of the event. - /// - /// The motion event being dispatched down the hierarchy. - /// - /// - /// true to steal the motion event from the children and - /// dispatch to this view, or false to allow the motion - /// event to be delivered to the child view. - /// - bool OnInterceptTouchEvent(object sender, PointerRoutedEventArgs @event); - } -}