Skip to content

Commit

Permalink
Convert InterceptTouchHandler to Kotlin
Browse files Browse the repository at this point in the history
Summary: as title

Reviewed By: luluwu2032

Differential Revision: D52909326

fbshipit-source-id: ae516f37cdecffe8e19749bb4b7eb2bcd0a811b0
  • Loading branch information
Peng Jiang authored and facebook-github-bot committed Jan 22, 2024
1 parent 26f7b56 commit da07488
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
* limitations under the License.
*/

package com.facebook.rendercore;
package com.facebook.rendercore

import android.view.MotionEvent;
import android.view.View;
import android.view.MotionEvent
import android.view.View

public interface InterceptTouchHandler {

boolean onInterceptTouchEvent(View view, MotionEvent ev);
interface InterceptTouchHandler {
fun onInterceptTouchEvent(view: View, ev: MotionEvent): Boolean
}

0 comments on commit da07488

Please sign in to comment.