From commits-return-18318-archive-asf-public=cust-asf.ponee.io@struts.apache.org Mon Feb 4 10:59:42 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id B9CD8180651 for ; Mon, 4 Feb 2019 11:59:41 +0100 (CET) Received: (qmail 47897 invoked by uid 500); 4 Feb 2019 10:59:40 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 47888 invoked by uid 99); 4 Feb 2019 10:59:40 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2019 10:59:40 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 4DC558626A; Mon, 4 Feb 2019 10:59:40 +0000 (UTC) Date: Mon, 04 Feb 2019 10:59:39 +0000 To: "commits@struts.apache.org" Subject: [struts] branch master updated: upgrade to ASM 7 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154927797937.14082.1088788547469288730@gitbox.apache.org> From: yasserzamani@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: struts X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: a3085373c651573ffbe45bc81da6ddcd5228e0dd X-Git-Newrev: 9d4e720922b1b0b3084619a97882bdbecfce53f4 X-Git-Rev: 9d4e720922b1b0b3084619a97882bdbecfce53f4 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 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) {