fix: Move proxy package out of cache package

This commit is contained in:
oSumAtrIX 2022-03-30 15:12:47 +02:00
parent 3651981161
commit ce21bd60f3
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
9 changed files with 20 additions and 20 deletions

View File

@ -1,6 +1,6 @@
package app.revanced.patcher.cache package app.revanced.patcher.cache
import app.revanced.patcher.cache.proxy.ClassProxy import app.revanced.patcher.proxy.ClassProxy
import app.revanced.patcher.signature.MethodSignatureScanResult import app.revanced.patcher.signature.MethodSignatureScanResult
import org.jf.dexlib2.iface.ClassDef import org.jf.dexlib2.iface.ClassDef

View File

@ -1,6 +1,6 @@
package app.revanced.patcher.cache.proxy package app.revanced.patcher.proxy
import app.revanced.patcher.cache.proxy.mutableTypes.MutableClass import app.revanced.patcher.proxy.mutableTypes.MutableClass
import org.jf.dexlib2.iface.ClassDef import org.jf.dexlib2.iface.ClassDef

View File

@ -1,6 +1,6 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableAnnotationElement.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableAnnotationElement.Companion.toMutable
import org.jf.dexlib2.base.BaseAnnotation import org.jf.dexlib2.base.BaseAnnotation
import org.jf.dexlib2.iface.Annotation import org.jf.dexlib2.iface.Annotation

View File

@ -1,6 +1,6 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable
import org.jf.dexlib2.base.BaseAnnotationElement import org.jf.dexlib2.base.BaseAnnotationElement
import org.jf.dexlib2.iface.AnnotationElement import org.jf.dexlib2.iface.AnnotationElement
import org.jf.dexlib2.iface.value.EncodedValue import org.jf.dexlib2.iface.value.EncodedValue

View File

@ -1,8 +1,8 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableAnnotation.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.cache.proxy.mutableTypes.MutableField.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableField.Companion.toMutable
import app.revanced.patcher.cache.proxy.mutableTypes.MutableMethod.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableMethod.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseTypeReference import org.jf.dexlib2.base.reference.BaseTypeReference
import org.jf.dexlib2.iface.ClassDef import org.jf.dexlib2.iface.ClassDef

View File

@ -1,4 +1,4 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import org.jf.dexlib2.iface.value.EncodedValue import org.jf.dexlib2.iface.value.EncodedValue

View File

@ -1,7 +1,7 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableAnnotation.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.cache.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseFieldReference import org.jf.dexlib2.base.reference.BaseFieldReference
import org.jf.dexlib2.iface.Field import org.jf.dexlib2.iface.Field

View File

@ -1,7 +1,7 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableAnnotation.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.cache.proxy.mutableTypes.MutableMethodParameter.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableMethodParameter.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseMethodReference import org.jf.dexlib2.base.reference.BaseMethodReference
import org.jf.dexlib2.builder.MutableMethodImplementation import org.jf.dexlib2.builder.MutableMethodImplementation
import org.jf.dexlib2.iface.Method import org.jf.dexlib2.iface.Method

View File

@ -1,6 +1,6 @@
package app.revanced.patcher.cache.proxy.mutableTypes package app.revanced.patcher.proxy.mutableTypes
import app.revanced.patcher.cache.proxy.mutableTypes.MutableAnnotation.Companion.toMutable import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import org.jf.dexlib2.base.BaseMethodParameter import org.jf.dexlib2.base.BaseMethodParameter
import org.jf.dexlib2.iface.MethodParameter import org.jf.dexlib2.iface.MethodParameter