Author: mmerz Date: Wed Dec 15 14:34:48 2004 New Revision: 112040 URL: http://svn.apache.org/viewcvs?view=rev&rev=112040 Log: fixed the compiler error
Contributor: Daryoush Mehrtash Modified: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm Modified: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java?view=diff&rev=112040&p1=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java&r1=112039&p2=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java&r2=112040 ============================================================================== --- incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java (original) +++ incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/wsdl/Wsdl2AJava.java Wed Dec 15 14:34:48 2004 @@ -26,7 +26,6 @@ import java.util.Properties; import org.apache.beehive.wsm.jsr181.model.Jsr181TypeMetadata; -import org.apache.beehive.wsm.jsr181.util.VelocityLineFormatter; import org.apache.velocity.Template; import org.apache.velocity.VelocityContext; import org.apache.velocity.app.VelocityEngine; @@ -128,7 +127,6 @@ */ public void generateAnnotatedJavaFromOM( Jsr181TypeMetadata om, Writer w) throws ResourceNotFoundException, ParseErrorException, MethodInvocationException, Exception, IOException { VelocityContext context = new VelocityContext(); - context.put("formatter", new VelocityLineFormatter()); context.put("webServiceOM", om); template.merge(context, w); w.close(); Modified: incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm?view=diff&rev=112040&p1=incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm&r1=112039&p2=incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm&r2=112040 ============================================================================== --- incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm (original) +++ incubator/beehive/trunk/wsm/src/runtime/templates/wsdl2ajava.vm Wed Dec 15 14:34:48 2004 @@ -144,6 +144,7 @@ //TODO: Implement the method logic here... + } #end
