fix: remove nullable annotation in Kotlin code

Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
oSumAtrIX 2023-02-22 05:42:28 +01:00
parent 1809d1bbf9
commit b5a29fdce1
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -1,11 +1,9 @@
package app.revanced.twitter.patches.hook.patch
import androidx.annotation.NonNull
interface Hook<T> {
/**
* Hook the given type.
* @param type The type to hook
*/
fun hook(@NonNull type: T): T
fun hook(type: T): T
}