Repository: cxf Updated Branches: refs/heads/master-jaxrs-2.1 961109d19 -> c50fe13ad (forced update)
Formatting issues in impl.vm. Closes #88 Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/95d18520 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/95d18520 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/95d18520 Branch: refs/heads/master-jaxrs-2.1 Commit: 95d1852016913a56a25798a255b539b3cc45ba98 Parents: 699f4c0 Author: Dustin R. Heart <[email protected]> Authored: Thu Sep 10 18:14:55 2015 -0700 Committer: Christian Schneider <[email protected]> Committed: Mon May 2 14:35:20 2016 +0200 ---------------------------------------------------------------------- .../org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/95d18520/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm ---------------------------------------------------------------------- diff --git a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm index e24f7cd..d9fe1b7 100644 --- a/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm +++ b/tools/wsdlto/frontend/jaxws/src/main/java/org/apache/cxf/tools/wsdlto/frontend/jaxws/template/impl.vm @@ -64,12 +64,12 @@ public class ${implName} implements $intf.Name { #foreach ($method in $intf.Methods) /* (non-Javadoc) - * @see $intf.PackageName.$intf.Name#${method.Name}(#foreach ($parameter in $method.Parameters)$parameter.ClassName $parameter.Name #if ($velocityCount != $method.getParameters().size()),#end)#end* + * @see $intf.PackageName.$intf.Name#${method.Name}(#foreach ($parameter in $method.Parameters)$parameter.ClassName $parameter.Name#if ($velocityCount != $method.getParameters().size()), #end#end)* */ #if ($mark-generated == "true") @Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "$currentdate") #end - public $method.return.ClassName ${method.Name}(#if($method.ParameterListWithoutAnnotation.size() == 0))#end#if($method.ParameterListWithoutAnnotation.size() != 0)#foreach($param in ${method.ParameterListWithoutAnnotation})$param#end)#end#if($method.Exceptions.size() > 0) throws #foreach($exception in $method.Exceptions)$exception.ClassName #if($velocityCount != $method.Exceptions.size()),#end #end #end { + public $method.return.ClassName ${method.Name}(#if($method.ParameterListWithoutAnnotation.size() == 0))#end#if($method.ParameterListWithoutAnnotation.size() != 0)#foreach($param in ${method.ParameterListWithoutAnnotation})$param#if($velocityCount != $method.ParameterListWithoutAnnotation.size()) #end#end)#end#if($method.Exceptions.size() > 0) throws #foreach($exception in $method.Exceptions)$exception.ClassName#if($velocityCount != $method.Exceptions.size()), #end #end #end { #if ($method.Async) return null; /* not called */
