TUP-16021: NPE error shows if Click Finish on "Create/Reuse a context

group"-First Page.
This commit is contained in:
zwxue
2016-10-19 10:38:23 +08:00
parent 6172c925f5
commit e4f2fd7955

View File

@@ -381,7 +381,10 @@ public abstract class PropertiesWizardPage extends AbstractNamedWizardPage {
* @return the destinationPath
*/
public IPath getDestinationPath() {
String pathStr = pathText.getText();
String pathStr = ""; //$NON-NLS-1$
if (pathText != null) {
pathStr = pathText.getText();
}
if (pathStr.contains("(default)")) {//$NON-NLS-1$
int index = pathStr.indexOf(")");//$NON-NLS-1$
if (pathStr.length() > index + 1) {