*/
private void removePage() {
//all we really need is a PageConfig with the page name
PageConfig pageConfig = createPageConfig();
RenderConfigAdminService renderConfig = portletContainerServices.getAdminConfiguration().getRenderConfigAdminService();
//This removePage method was added into Pluto as a patch (PLUTO-387). addPage functionality
//was available, but removePage functionality was unavailable.
//NOTE: getList returns a copy of the Map that stores page data in List form. Since it's a copy,
//it does not serve our purpose, and since no simple workaround was available, the simpler
//solution was just to try to patch the code.
renderConfig.removePage(pageConfig);
}