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 sa...@apache.org on 2007/06/26 03:09:33 UTC

svn commit: r550651 - /webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java

Author: sandakith
Date: Mon Jun 25 18:09:32 2007
New Revision: 550651

URL: http://svn.apache.org/viewvc?view=rev&rev=550651
Log:
fix for AXIS2-1468
After debugging the whole scenarios at last found the cause, because of we have the single wizards emulating as two wizards seperated from the first page selection, the earlier initialization was affected to the latter scenario. So initializing it to NONE always.


Modified:
    webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java

Modified: webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java?view=diff&rev=550651&r1=550650&r2=550651
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java Mon Jun 25 18:09:32 2007
@@ -59,8 +59,7 @@
 	 * @see org.apache.axis2.tool.codegen.eclipse.ui.AbstractWizardPage#initializeDefaultSettings()
 	 */
 	protected void initializeDefaultSettings() {
-		settings.put(PREF_JAVA_OUTPUT_WSDL_LOCATION, System
-				.getProperty("user.dir"));
+		settings.put(PREF_JAVA_OUTPUT_WSDL_LOCATION, "");
 		settings.put(JAVA_OUTPUT_WSDL_NAME, "services.wsdl");
 		settings.put(PREF_JAVA_OUTPUT_FILESYATEM, true);
 		settings.put(PREF_JAVA_OUTPUT_WORKSPACE, false);



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org