surface removal of multilingual space dialogs plus removal of native tomcat connector config

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6122 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Paul Holmes-Higgin
2007-06-27 20:17:24 +00:00
parent f6c4af6d9b
commit f67b0f07c0
4 changed files with 3 additions and 41 deletions

View File

@@ -179,18 +179,8 @@ public class EditSpaceDialog extends CreateSpaceDialog
}
}
// do nothing by default, subclasses can override if necessary
if(isEdit())
{
this.browseBean.setDocument(this.getEditableNode()); // (this.editableNode.getNodeRef());
return "dialog:createMultilingualProperties";
}
else
{
return AlfrescoNavigationHandler.CLOSE_DIALOG_OUTCOME;
}
// do nothing by default, subclasses can override if necessary
return AlfrescoNavigationHandler.CLOSE_DIALOG_OUTCOME;
}
@Override
@@ -215,17 +205,4 @@ public class EditSpaceDialog extends CreateSpaceDialog
return this.editableNode;
}
public boolean isEdit()
{
return this.edit;
}
public void setEdit(boolean x)
{
this.edit=x;
}
private boolean edit;
}