Skip to content

Commit

Permalink
fix: Move proxy package out of cache package
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Jun 5, 2022
1 parent 3651981 commit ce21bd6
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/patcher/cache/Cache.kt
@@ -1,6 +1,6 @@
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 org.jf.dexlib2.iface.ClassDef

Expand Down
@@ -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


Expand Down
@@ -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.iface.Annotation

Expand Down
@@ -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.iface.AnnotationElement
import org.jf.dexlib2.iface.value.EncodedValue
Expand Down
@@ -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.cache.proxy.mutableTypes.MutableField.Companion.toMutable
import app.revanced.patcher.cache.proxy.mutableTypes.MutableMethod.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableField.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableMethod.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseTypeReference
import org.jf.dexlib2.iface.ClassDef

Expand Down
@@ -1,4 +1,4 @@
package app.revanced.patcher.cache.proxy.mutableTypes
package app.revanced.patcher.proxy.mutableTypes

import org.jf.dexlib2.iface.value.EncodedValue

Expand Down
@@ -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.cache.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableEncodedValue.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseFieldReference
import org.jf.dexlib2.iface.Field

Expand Down
@@ -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.cache.proxy.mutableTypes.MutableMethodParameter.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableAnnotation.Companion.toMutable
import app.revanced.patcher.proxy.mutableTypes.MutableMethodParameter.Companion.toMutable
import org.jf.dexlib2.base.reference.BaseMethodReference
import org.jf.dexlib2.builder.MutableMethodImplementation
import org.jf.dexlib2.iface.Method
Expand Down
@@ -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.iface.MethodParameter

Expand Down

0 comments on commit ce21bd6

Please sign in to comment.