You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ya...@apache.org on 2019/02/04 10:59:39 UTC

[struts] branch master updated: upgrade to ASM 7

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

yasserzamani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d4e720  upgrade to ASM 7
9d4e720 is described below

commit 9d4e720922b1b0b3084619a97882bdbecfce53f4
Author: Yasser Zamani <ya...@apache.org>
AuthorDate: Wed Jan 23 16:24:40 2019 +0330

    upgrade to ASM 7
    
    fixes WW-5005
    
    (cherry picked from commit 3eb68be)
---
 .../main/java/org/apache/struts2/convention/DefaultClassFinder.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/convention/src/main/java/org/apache/struts2/convention/DefaultClassFinder.java b/plugins/convention/src/main/java/org/apache/struts2/convention/DefaultClassFinder.java
index 09bd431..3aaad59 100644
--- a/plugins/convention/src/main/java/org/apache/struts2/convention/DefaultClassFinder.java
+++ b/plugins/convention/src/main/java/org/apache/struts2/convention/DefaultClassFinder.java
@@ -458,7 +458,7 @@ public class DefaultClassFinder implements ClassFinder {
         private ClassFinder classFinder;
 
         public InfoBuildingVisitor(ClassFinder classFinder) {
-            super(Opcodes.ASM5);
+            super(Opcodes.ASM7);
             this.classFinder = classFinder;
         }
 
@@ -539,7 +539,7 @@ public class DefaultClassFinder implements ClassFinder {
         private Info info;
 
         public InfoBuildingMethodVisitor() {
-            super(Opcodes.ASM5);
+            super(Opcodes.ASM7);
         }
 
         public InfoBuildingMethodVisitor(Info info) {