https://bugs.eclipse.org/bugs/show_bug.cgi?id=152687
diff --git a/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGExportWizard.java b/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGExportWizard.java
deleted file mode 100755
index de89d8a..0000000
--- a/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGExportWizard.java
+++ /dev/null
@@ -1,79 +0,0 @@
-//------------------------------------------------------------------------------
-// Copyright (c) 2005, 2006 IBM Corporation and others.
-// All rights reserved. This program and the accompanying materials
-// are made available under the terms of the Eclipse Public License v1.0
-// which accompanies this distribution, and is available at
-// http://www.eclipse.org/legal/epl-v10.html
-//
-// Contributors:
-// IBM Corporation - initial implementation
-//------------------------------------------------------------------------------
-package org.eclipse.epf.rcp.wizards;
-
-import org.eclipse.core.runtime.Path;
-import org.eclipse.ui.internal.WorkbenchPlugin;
-import org.eclipse.ui.internal.dialogs.ExportWizard;
-import org.eclipse.ui.internal.dialogs.WizardCollectionElement;
-import org.eclipse.ui.internal.dialogs.WorkbenchWizardElement;
-import org.eclipse.ui.internal.registry.WizardsRegistryReader;
-import org.eclipse.ui.model.AdaptableList;
-import org.eclipse.ui.wizards.IWizardCategory;
-
-public class TNGExportWizard extends ExportWizard {
-
-	String[] allowed_export_wizards = {
-			"org.eclipse.epf.export.wizards.ExportConfigurationWizard", //$NON-NLS-1$
-			"org.eclipse.epf.export.wizards.ExportPluginWizard", //$NON-NLS-1$
-			"org.eclipse.efp.export.msp.wizards.ExportToMSProjectWizard", //$NON-NLS-1$
-			"org.eclipse.epf.export.xml.wizards.ExportXmlWizard" //$NON-NLS-1$
-	};
-
-	protected AdaptableList getAvailableExportWizards() {
-
-		// System.out.println("$$$ INFO: entered TNGExportWizard.");
-
-		// TODO: exports are still flat - we need to get at the flat list. All
-		// wizards will be in the "other" category.
-		IWizardCategory root = WorkbenchPlugin.getDefault()
-				.getExportWizardRegistry().getRootCategory();
-		WizardCollectionElement otherCategory = (WizardCollectionElement) root
-				.findCategory(new Path(
-						WizardsRegistryReader.UNCATEGORIZED_WIZARD_CATEGORY));
-
-		// if (otherCategory == null)
-		// return new AdaptableList();
-		// return otherCategory.getWizardAdaptableList();
-
-		AdaptableList result;
-		if (otherCategory == null)
-			result = new AdaptableList();
-		else
-			result = otherCategory.getWizardAdaptableList();
-
-		AdaptableList filteredResult = new AdaptableList();
-		Object[] objs = result.getChildren();
-		for (int i = 0; i < objs.length; i++) {
-			WorkbenchWizardElement obj = (WorkbenchWizardElement) objs[i];
-			// System.out.println("$$$ INFO: WorkbenchWizardElement = " +
-			// obj.getId());
-			if (isAllowedExportWizard(obj.getId())) {
-				filteredResult.add(obj);
-				// System.out.println("$$$ INFO: WorkbenchWizardElement allowed
-				// = " + obj.getId());
-			}
-		}
-
-		return filteredResult;
-	}
-
-	private boolean isAllowedExportWizard(String id) {
-
-		for (int i = 0; i < allowed_export_wizards.length; i++) {
-			if (id.equals(allowed_export_wizards[i]))
-				return true;
-		}
-
-		return false;
-	}
-
-}
diff --git a/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGImportWizard.java b/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGImportWizard.java
deleted file mode 100755
index 9cb08a9..0000000
--- a/plugins/org.eclipse.epf.rcp/src/org/eclipse/epf/rcp/wizards/TNGImportWizard.java
+++ /dev/null
@@ -1,75 +0,0 @@
-//------------------------------------------------------------------------------
-// Copyright (c) 2005, 2006 IBM Corporation and others.
-// All rights reserved. This program and the accompanying materials
-// are made available under the terms of the Eclipse Public License v1.0
-// which accompanies this distribution, and is available at
-// http://www.eclipse.org/legal/epl-v10.html
-//
-// Contributors:
-// IBM Corporation - initial implementation
-//------------------------------------------------------------------------------
-package org.eclipse.epf.rcp.wizards;
-
-import org.eclipse.core.runtime.Path;
-import org.eclipse.ui.internal.WorkbenchPlugin;
-import org.eclipse.ui.internal.dialogs.ImportWizard;
-import org.eclipse.ui.internal.dialogs.WizardCollectionElement;
-import org.eclipse.ui.internal.dialogs.WorkbenchWizardElement;
-import org.eclipse.ui.internal.registry.WizardsRegistryReader;
-import org.eclipse.ui.model.AdaptableList;
-import org.eclipse.ui.wizards.IWizardCategory;
-
-public class TNGImportWizard extends ImportWizard {
-
-	String[] allowed_import_wizards = {
-			"org.eclipse.epf.importing.wizards.ImportConfigurationWizard", //$NON-NLS-1$
-			"org.eclipse.epf.importing.wizards.ImportPluginWizard", //$NON-NLS-1$
-			"org.eclipse.epf.importing.xml.wizards.ImportXmlWizard" //$NON-NLS-1$
-	};
-
-	/**
-	 * Returns the import wizards that are available for invocation.
-	 */
-	protected AdaptableList getAvailableImportWizards() {
-
-		// System.out.println("$$$ INFO: entered TNGImportWizard.");
-
-		// TODO: imports are still flat - we need to get at the flat list. All
-		// wizards will be in the "other" category.
-		IWizardCategory root = WorkbenchPlugin.getDefault()
-				.getImportWizardRegistry().getRootCategory();
-		WizardCollectionElement otherCategory = (WizardCollectionElement) root
-				.findCategory(new Path(
-						WizardsRegistryReader.UNCATEGORIZED_WIZARD_CATEGORY));
-		AdaptableList result;
-		if (otherCategory == null)
-			result = new AdaptableList();
-		else
-			result = otherCategory.getWizardAdaptableList();
-
-		AdaptableList filteredResult = new AdaptableList();
-		Object[] objs = result.getChildren();
-		for (int i = 0; i < objs.length; i++) {
-			WorkbenchWizardElement obj = (WorkbenchWizardElement) objs[i];
-			// System.out.println("$$$ INFO: WorkbenchWizardElement = " +
-			// obj.getId());
-			if (isAllowedImportWizard(obj.getId())) {
-				filteredResult.add(obj);
-				// System.out.println("$$$ INFO: WorkbenchWizardElement allowed
-				// = " + obj.getId());
-			}
-		}
-
-		return filteredResult;
-	}
-
-	private boolean isAllowedImportWizard(String id) {
-
-		for (int i = 0; i < allowed_import_wizards.length; i++) {
-			if (id.equals(allowed_import_wizards[i]))
-				return true;
-		}
-
-		return false;
-	}
-}