From 971aae4b21801fcff56451879a077e2c876bc44a Mon Sep 17 00:00:00 2001 From: Naveen Singh Date: Sun, 30 Mar 2025 04:29:31 +0530 Subject: [PATCH] Remove unnecessary annotation --- app/src/main/kotlin/org/fossify/clock/views/AutoFitTextView.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/kotlin/org/fossify/clock/views/AutoFitTextView.kt b/app/src/main/kotlin/org/fossify/clock/views/AutoFitTextView.kt index 7135d0d2..1db41d8f 100644 --- a/app/src/main/kotlin/org/fossify/clock/views/AutoFitTextView.kt +++ b/app/src/main/kotlin/org/fossify/clock/views/AutoFitTextView.kt @@ -2,18 +2,15 @@ package org.fossify.clock.views import android.annotation.SuppressLint import android.content.Context -import android.os.Build import android.util.AttributeSet import android.util.TypedValue import android.widget.TextView -import androidx.annotation.RequiresApi /** * A simple wrapper TextView that restores the original text size * when view width is restored. */ @SuppressLint("AppCompatCustomView") -@RequiresApi(Build.VERSION_CODES.O) class AutoFitTextView @JvmOverloads constructor( context: Context, attrs: AttributeSet? = null,