feat: add or extension for AccessFlags

This commit is contained in:
Lucaskyy
2022-03-31 22:46:46 +02:00
committed by oSumAtrIX
parent cb78c5a86f
commit 00c85b5d75
2 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
package app.revanced.patcher.extensions
import org.jf.dexlib2.AccessFlags
infix fun AccessFlags.or(other: AccessFlags) = this.value or other.value