mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-19 10:26:50 +01:00
fix: remove nullable annotation in Kotlin code
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
parent
7d34be43f6
commit
4dadcfdf1f
@ -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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user