feat: do not fix methods or methods in class merger

This commit is contained in:
oSumAtrIX 2023-01-02 08:50:08 +01:00
parent 5c09ef7837
commit 4102f43b8a
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ internal object ClassMerger {
* @param logger A logger.
*/
fun ClassDef.merge(otherClass: ClassDef, context: PatcherContext, logger: Logger? = null) = this
.fixFieldAccess(otherClass, logger)
.fixMethodAccess(otherClass, logger)
//.fixFieldAccess(otherClass, logger)
//.fixMethodAccess(otherClass, logger)
.addMissingFields(otherClass, logger)
.addMissingMethods(otherClass, logger)
.publicize(otherClass, context, logger)