Skip to content

Commit

Permalink
Merge pull request #787 from Janmm14/patch-1
Browse files Browse the repository at this point in the history
Fix jvm bytecode filter removal not removing
  • Loading branch information
Col-E committed May 1, 2024
2 parents 9653c52 + c1646f5 commit 2d58484
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public boolean addJvmBytecodeFilter(@Nonnull JvmBytecodeFilter filter) {

@Override
public boolean removeJvmBytecodeFilter(@Nonnull JvmBytecodeFilter filter) {
return bytecodeFilters.add(filter);
return bytecodeFilters.remove(filter);
}

@Nonnull
Expand Down

0 comments on commit 2d58484

Please sign in to comment.