Return-Path: X-Original-To: apmail-ofbiz-commits-archive@www.apache.org Delivered-To: apmail-ofbiz-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2E1AD10F34 for ; Thu, 6 Jun 2013 05:16:41 +0000 (UTC) Received: (qmail 63661 invoked by uid 500); 6 Jun 2013 05:16:41 -0000 Delivered-To: apmail-ofbiz-commits-archive@ofbiz.apache.org Received: (qmail 60681 invoked by uid 500); 6 Jun 2013 05:16:34 -0000 Mailing-List: contact commits-help@ofbiz.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ofbiz.apache.org Delivered-To: mailing list commits@ofbiz.apache.org Received: (qmail 60236 invoked by uid 99); 6 Jun 2013 05:16:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jun 2013 05:16:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Jun 2013 05:16:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2183023888E7; Thu, 6 Jun 2013 05:16:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1490144 - /ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl Date: Thu, 06 Jun 2013 05:16:09 -0000 To: commits@ofbiz.apache.org From: adrianc@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130606051609.2183023888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: adrianc Date: Thu Jun 6 05:16:08 2013 New Revision: 1490144 URL: http://svn.apache.org/r1490144 Log: XSD-to-Java bug fix - fixed bad class field name. Modified: ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl Modified: ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl?rev=1490144&r1=1490143&r2=1490144&view=diff ============================================================================== --- ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl (original) +++ ofbiz/trunk/framework/webtools/webapp/webtools/XsdToJava.ftl Thu Jun 6 05:16:08 2013 @@ -303,7 +303,7 @@ public final class ${className}<#if subs <#if isList> private final List<${className}> ${fieldName}List; // <${elementName}> <#else> - private final Element ${fieldName}; // <${elementName}> + private final ${className} ${fieldName}; // <${elementName}>