Skip to content

Commit

Permalink
Made getPlainNodeCopy public.
Browse files Browse the repository at this point in the history
  • Loading branch information
CadenCCC committed Dec 18, 2024
1 parent 3f005c4 commit b6d428a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/omnimc/trix/ClassModifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public ClassNode modify(@NotNull ClassNode classNode, boolean usePlainNode) {
/**
* @return A copy of the current `plainNode` for safe mutation.
*/
private ClassNode getPlainNodeCopy() {
public ClassNode getPlainNodeCopy() {
ClassNode copy = new ClassNode();
plainNode.accept(copy);
return copy;
Expand Down

0 comments on commit b6d428a

Please sign in to comment.