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

thiagohp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new 085d366  TAP5-2697: fixing ProxyCreation.listen to plastic class events
085d366 is described below

commit 085d3662672fff372536eef0db9008c7d8e95f0f
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Thu Dec 9 00:09:25 2021 -0300

    TAP5-2697: fixing ProxyCreation.listen to plastic class events
---
 .../apache/tapestry5/internal/plastic/asm/util/TraceClassVisitor.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/plastic/src/external/java/org/apache/tapestry5/internal/plastic/asm/util/TraceClassVisitor.java
 
b/plastic/src/external/java/org/apache/tapestry5/internal/plastic/asm/util/TraceClassVisitor.java
index cdad62e..6d0d9b1 100644
--- 
a/plastic/src/external/java/org/apache/tapestry5/internal/plastic/asm/util/TraceClassVisitor.java
+++ 
b/plastic/src/external/java/org/apache/tapestry5/internal/plastic/asm/util/TraceClassVisitor.java
@@ -120,7 +120,7 @@ public final class TraceClassVisitor extends ClassVisitor {
    */
   public TraceClassVisitor(
       final ClassVisitor classVisitor, final Printer printer, final 
PrintWriter printWriter) {
-    super(/* latest api = */ Opcodes.ASM10_EXPERIMENTAL, classVisitor);
+    super(/* latest api = */ Opcodes.ASM9, classVisitor);
     this.printWriter = printWriter;
     this.p = printer;
   }

Reply via email to