From 204e8492184eb1bf2ccfc341803bf6ecee2ae8dd Mon Sep 17 00:00:00 2001 From: David Aurelio Date: Tue, 11 Jun 2019 01:37:19 -0700 Subject: [PATCH] rm `YogaEventListener` Reviewed By: SidharthGuglani Differential Revision: D15742456 fbshipit-source-id: b90a221e177e936e141c582500dccf0ac38027c2 --- java/com/facebook/yoga/YogaEventListener.java | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 java/com/facebook/yoga/YogaEventListener.java diff --git a/java/com/facebook/yoga/YogaEventListener.java b/java/com/facebook/yoga/YogaEventListener.java deleted file mode 100644 index cc7e9ebd..00000000 --- a/java/com/facebook/yoga/YogaEventListener.java +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its 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.yoga; - -public interface YogaEventListener { - - void onLayoutPassEnd(YogaNode node); - - void onNodeMeasure(YogaNode node); - - void onNodeLayout(YogaNode node, boolean performLayout); - -}