From 4e75c24b994c09da643601d448d27ada8f87930c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nivaldo=20Bondan=C3=A7a?= Date: Wed, 13 Aug 2025 12:21:19 -0700 Subject: [PATCH] Codemod format for trailing commas incoming change [5/n] Summary: Adding trailing commas. Differential Revision: D80174965 --- java/com/facebook/yoga/YogaMeasureFunction.kt | 2 +- java/com/facebook/yoga/annotations/DoNotStrip.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/java/com/facebook/yoga/YogaMeasureFunction.kt b/java/com/facebook/yoga/YogaMeasureFunction.kt index 10b5cfc0..53109a08 100644 --- a/java/com/facebook/yoga/YogaMeasureFunction.kt +++ b/java/com/facebook/yoga/YogaMeasureFunction.kt @@ -14,6 +14,6 @@ public fun interface YogaMeasureFunction { width: Float, widthMode: YogaMeasureMode, height: Float, - heightMode: YogaMeasureMode + heightMode: YogaMeasureMode, ): Long } diff --git a/java/com/facebook/yoga/annotations/DoNotStrip.kt b/java/com/facebook/yoga/annotations/DoNotStrip.kt index c0890371..532bb060 100644 --- a/java/com/facebook/yoga/annotations/DoNotStrip.kt +++ b/java/com/facebook/yoga/annotations/DoNotStrip.kt @@ -13,6 +13,7 @@ package com.facebook.yoga.annotations AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, - AnnotationTarget.CONSTRUCTOR) + AnnotationTarget.CONSTRUCTOR, +) @Retention(AnnotationRetention.BINARY) public annotation class DoNotStrip