Skip to content

Commit

Permalink
don't attempt to propgate if final
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Jun 12, 2024
1 parent 253aa9a commit 3219339
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class PropogatorImpl(namespace: Namespace, tree: AbstractMappingTree, required:
}
}

access and (Opcodes.ACC_STATIC or Opcodes.ACC_PRIVATE) == 0
access and (Opcodes.ACC_STATIC or Opcodes.ACC_PRIVATE or Opcodes.ACC_FINAL) == 0
}.map { it.name to MethodDescriptor.read(it.desc) }

}
Expand Down

0 comments on commit 3219339

Please sign in to comment.