mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 02:55:33 +00:00
avoid desugar the Desugar class
This commit is contained in:
parent
c661009b31
commit
377b6d0cc2
@ -7,7 +7,7 @@ import org.objectweb.asm.MethodVisitor
|
|||||||
import org.objectweb.asm.Opcodes
|
import org.objectweb.asm.Opcodes
|
||||||
import org.objectweb.asm.Opcodes.ASM9
|
import org.objectweb.asm.Opcodes.ASM9
|
||||||
|
|
||||||
private const val DESUGAR_CLASS_NAME = "com/topjohnwu/magisk/core/utils/Desugar"
|
private const val DESUGAR_CLASS_NAME = "com.topjohnwu.magisk.core.utils.Desugar"
|
||||||
private const val ZIP_ENTRY_GET_TIME_DESC = "()Ljava/nio/file/attribute/FileTime;"
|
private const val ZIP_ENTRY_GET_TIME_DESC = "()Ljava/nio/file/attribute/FileTime;"
|
||||||
private const val DESUGAR_GET_TIME_DESC = "(Ljava/util/zip/ZipEntry;)Ljava/nio/file/attribute/FileTime;"
|
private const val DESUGAR_GET_TIME_DESC = "(Ljava/util/zip/ZipEntry;)Ljava/nio/file/attribute/FileTime;"
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ abstract class DesugarClassVisitorFactory : AsmClassVisitorFactory<Instrumentati
|
|||||||
return DesugarClassVisitor(nextClassVisitor)
|
return DesugarClassVisitor(nextClassVisitor)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun isInstrumentable(classData: ClassData) = true
|
override fun isInstrumentable(classData: ClassData) = classData.className != DESUGAR_CLASS_NAME
|
||||||
|
|
||||||
class DesugarClassVisitor(cv: ClassVisitor) : ClassVisitor(ASM9, cv) {
|
class DesugarClassVisitor(cv: ClassVisitor) : ClassVisitor(ASM9, cv) {
|
||||||
override fun visitMethod(
|
override fun visitMethod(
|
||||||
@ -53,7 +53,7 @@ abstract class DesugarClassVisitorFactory : AsmClassVisitorFactory<Instrumentati
|
|||||||
"getLastModifiedTime", "getLastAccessTime", "getCreationTime" -> {
|
"getLastModifiedTime", "getLastAccessTime", "getCreationTime" -> {
|
||||||
mv.visitMethodInsn(
|
mv.visitMethodInsn(
|
||||||
Opcodes.INVOKESTATIC,
|
Opcodes.INVOKESTATIC,
|
||||||
DESUGAR_CLASS_NAME,
|
DESUGAR_CLASS_NAME.replace('.', '/'),
|
||||||
name,
|
name,
|
||||||
DESUGAR_GET_TIME_DESC,
|
DESUGAR_GET_TIME_DESC,
|
||||||
false
|
false
|
||||||
|
Loading…
Reference in New Issue
Block a user