You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2020/04/25 10:22:48 UTC

[groovy] branch GROOVY-9526 updated: Trivial refactoring

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch GROOVY-9526
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY-9526 by this push:
     new a9e4a2c  Trivial refactoring
a9e4a2c is described below

commit a9e4a2c277020706c5053374207fde0ac4dbf25b
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Apr 25 18:22:16 2020 +0800

    Trivial refactoring
---
 src/main/java/org/codehaus/groovy/ast/ClassNode.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/codehaus/groovy/ast/ClassNode.java b/src/main/java/org/codehaus/groovy/ast/ClassNode.java
index 106a0d7..87b0a48 100644
--- a/src/main/java/org/codehaus/groovy/ast/ClassNode.java
+++ b/src/main/java/org/codehaus/groovy/ast/ClassNode.java
@@ -287,7 +287,7 @@ public class ClassNode extends AnnotatedNode implements Opcodes {
                                          "A redirect() call is missing somewhere!");
             }
             if (lazyInitDone) return;
-            VMPluginFactory.getPlugin().configureClassNode(compileUnit, this);
+            VM_PLUGIN.configureClassNode(compileUnit, this);
             lazyInitDone = true;
         }
     }