Skip to content

Commit 35d8086

Browse files
mateoguzmanafacebook-github-bot
authored andcommitted
Migrate DoNotStrip to Kotlin
Summary: Migrate com.facebook.yoga.annotations.DoNotStrip to Kotlin. X-link: react/yoga#1840 Reviewed By: rshest Differential Revision: D79897758 Pulled By: cortinico fbshipit-source-id: 79585e6ab793bd72e04440581d866f7721667db3
1 parent 65b5a5b commit 35d8086

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/yoga/annotations/DoNotStrip.java

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
package com.facebook.yoga.annotations
9+
10+
@Target(
11+
AnnotationTarget.CLASS,
12+
AnnotationTarget.FIELD,
13+
AnnotationTarget.FUNCTION,
14+
AnnotationTarget.PROPERTY_GETTER,
15+
AnnotationTarget.PROPERTY_SETTER,
16+
AnnotationTarget.CONSTRUCTOR)
17+
@Retention(AnnotationRetention.BINARY)
18+
public annotation class DoNotStrip

0 commit comments

Comments
 (0)