Skip to content

Commit

Permalink
1、修改bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Dec 16, 2024
1 parent 8d56205 commit 009baca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ fun Int.addPublic(isAddPublic: Boolean):Int{
if (Modifier.isPublic(this)){
this
}else{
this + Opcodes.ACC_PUBLIC
this and (Opcodes.ACC_PRIVATE or Opcodes.ACC_PROTECTED).inv() or Opcodes.ACC_PUBLIC
}
}else{
this
Expand Down

0 comments on commit 009baca

Please sign in to comment.