You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/07/03 17:09:24 UTC

svn commit: r552869 - /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: Tue Jul  3 08:09:19 2007
New Revision: 552869

URL: http://svn.apache.org/viewvc?view=rev&rev=552869
Log:
fixing an issue where wrong paths persit in the output page, initiate always to empty string to overcome


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=552869&r1=552868&r2=552869
==============================================================================
--- 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 Tue Jul  3 08:09:19 2007
@@ -136,8 +136,7 @@
 		gd = new GridData(GridData.FILL_HORIZONTAL);
 		outputFolderTextBox = new Text(container, SWT.BORDER);
 		outputFolderTextBox.setLayoutData(gd);
-		outputFolderTextBox.setText(settings
-				.get(PREF_JAVA_OUTPUT_WSDL_LOCATION));
+		outputFolderTextBox.setText("");
 		outputFolderTextBox.addModifyListener(new ModifyListener() {
 			public void modifyText(ModifyEvent e) {
 				handleFolderTextChange();



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