You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/08/02 15:54:08 UTC

svn commit: r1153129 - in /cxf/branches/2.4.x-fixes: ./ tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm

Author: dkulp
Date: Tue Aug  2 13:54:08 2011
New Revision: 1153129

URL: http://svn.apache.org/viewvc?rev=1153129&view=rev
Log:
Merged revisions 1153127 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1153127 | dkulp | 2011-08-02 09:51:25 -0400 (Tue, 02 Aug 2011) | 2 lines
  
  [CXF-3699] Fix @Generated annotations when serialVersionUID are output on exceptions
  Patch from Denis N. Antonioli applied
........

Modified:
    cxf/branches/2.4.x-fixes/   (props changed)
    cxf/branches/2.4.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.4.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm?rev=1153129&r1=1153128&r2=1153129&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm (original)
+++ cxf/branches/2.4.x-fixes/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/fault.vm Tue Aug  2 13:54:08 2011
@@ -40,10 +40,10 @@ $expClass.classJavaDoc
 @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "$currentdate", comments = "$fullversion")
 #end
 public class $expClass.Name extends $exceptionSuperclass {
+#if (${suid} != "")
 #if ($mark-generated == "true")
     @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "$currentdate")
 #end
-#if (${suid} != "")
     public static final long serialVersionUID = ${suid}L;
 #end
 #foreach ($field in $expClass.Fields)