diff --git a/rse/tests/org.eclipse.rse.tests/plugin.xml b/rse/tests/org.eclipse.rse.tests/plugin.xml
index 618b9e81bef..baac218689f 100644
--- a/rse/tests/org.eclipse.rse.tests/plugin.xml
+++ b/rse/tests/org.eclipse.rse.tests/plugin.xml
@@ -10,5 +10,8 @@
- * Since most JUnit PDE testcases create a brand new workspace when they start you will likely need - * to create a new RSE connection to start your testing. The "createSystemConnection(...) methods - * are therefore your most likely starting point. - *
- * Note: If your testcases subclasses AbstractSystemConnectionTest then you can use the getConnection() - * method instead. - * - * @author yantzi - */ -public class RSEConnectionTestUtil { - - - - /** - * Retrieve the default RSE system profile. If the default profile has not been renamed from the default - * name ("Private") then the profile is renamed to the DEFAULT_PROFILE_NAME specified in - * SystemConnectionTests.properties. - * @param profileName the name the default profile will become. - * @return The default RSE system profile. - * @throws Exception of the profile cannot be found - */ - public static ISystemProfile getDefaultProfile(String profileName) throws Exception { - ISystemRegistry sr = RSEUIPlugin.getTheSystemRegistry(); - ISystemProfile defaultProfile = sr.getSystemProfileManager().getDefaultPrivateSystemProfile(); - if (defaultProfile != null && defaultProfile.getName().equals("Private")) { //$NON-NLS-1$ - sr.renameSystemProfile(defaultProfile, profileName); - } - return defaultProfile; - } - -}