From dev-return-18754-archive-asf-public=cust-asf.ponee.io@cxf.apache.org Wed Jan 31 21:21:04 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id E1920180662 for ; Wed, 31 Jan 2018 21:21:04 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CA9F1160C42; Wed, 31 Jan 2018 20:21:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 20217160C2C for ; Wed, 31 Jan 2018 21:21:03 +0100 (CET) Received: (qmail 81639 invoked by uid 500); 31 Jan 2018 20:21:03 -0000 Mailing-List: contact dev-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list dev@cxf.apache.org Received: (qmail 81627 invoked by uid 99); 31 Jan 2018 20:21:03 -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; Wed, 31 Jan 2018 20:21:03 +0000 From: GitBox To: dev@cxf.apache.org Subject: [GitHub] deki closed pull request #372: [CXF-6134] Apache CXF generating constructor with duplicate argument names causing compilation error Message-ID: <151743006258.10206.6503731173634962623.gitbox@gitbox.apache.org> deki closed pull request #372: [CXF-6134] Apache CXF generating constructor with duplicate argument names causing compilation error URL: https://github.com/apache/cxf/pull/372 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm index 9f4cea85b0c..d61944f4aca 100644 --- a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm +++ b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm @@ -75,7 +75,7 @@ public class $expClass.Name extends $exceptionSuperclass { #if ($markGenerated == "true") @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "$currentdate") #end - public ${expClass.Name}(String message, Throwable cause) { + public ${expClass.Name}(String message, java.lang.Throwable cause) { super(message, cause); } @@ -90,7 +90,7 @@ public class $expClass.Name extends $exceptionSuperclass { #if ($markGenerated == "true") @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "$currentdate") #end - public ${expClass.Name}(String message, $field.ClassName $paraName, Throwable cause) { + public ${expClass.Name}(String message, $field.ClassName $paraName, java.lang.Throwable cause) { super(message, cause); this.$paraName = $paraName; } ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services