mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-01-05 17:45:49 +01:00
fix: remove nullable annotation in Kotlin code
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
parent
1809d1bbf9
commit
b5a29fdce1
@ -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…
Reference in New Issue
Block a user