You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by aj...@apache.org on 2005/10/11 05:03:52 UTC

svn commit: r312789 - /webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java

Author: ajith
Date: Mon Oct 10 20:03:46 2005
New Revision: 312789

URL: http://svn.apache.org/viewcvs?rev=312789&view=rev
Log:
oops!. Deleting the temp directories was commented!

Modified:
    webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java?rev=312789&r1=312788&r2=312789&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/schema/AbstractSchemaCompilerTester.java Mon Oct 10 20:03:46 2005
@@ -64,9 +64,7 @@
 
 
     public void testSchema() throws Exception{
-        CompilerOptions compilerOptions = new CompilerOptions();
-        compilerOptions.setOutputLocation(outputFolder);
-        SchemaCompiler compiler = new SchemaCompiler(compilerOptions);
+        SchemaCompiler compiler = new SchemaCompiler( new CompilerOptions().setOutputLocation(outputFolder));
         compiler.compile(currentSchema);
     }