Skip to content

Commit f70c39d

Browse files
refinedatafacebook-github-bot
authored andcommitted
Fix obfuscated scale type names (#52958)
Summary: Pull Request resolved: #52958 Changelog: [Internal] Reviewed By: kartavya-ramnani, oprisnik, rshest Differential Revision: D79354202 fbshipit-source-id: d4e84749324ff75a283c940631ac1199694bc92e
1 parent 8c305a0 commit f70c39d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/image/ScaleTypeStartInside.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ internal class ScaleTypeStartInside : AbstractScaleType() {
3131
outTransform.postTranslate(Math.round(dx).toFloat(), Math.round(dy).toFloat())
3232
}
3333

34-
override fun toString(): String {
35-
return "start_inside"
36-
}
34+
override fun getDescription(): String = "start_inside"
3735

3836
companion object {
3937
val INSTANCE: ScalingUtils.ScaleType = ScaleTypeStartInside()

0 commit comments

Comments
 (0)