summaryrefslogtreecommitdiffstats
path: root/base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java')
-rw-r--r--base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java b/base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java
index 9a7292f2c..b2b4b30f2 100644
--- a/base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java
+++ b/base/server/cmscore/src/com/netscape/cmscore/profile/ProfileSubsystem.java
@@ -55,7 +55,6 @@ public class ProfileSubsystem
IPluginRegistry registry = (IPluginRegistry)
CMS.getSubsystem(CMS.SUBSYSTEM_REGISTRY);
- mProfileIds = new Vector<String>();
mProfiles = new Hashtable<String, IProfile>();
mProfileClassIds = new Hashtable<String, String>();
@@ -126,7 +125,6 @@ public class ProfileSubsystem
CMS.debug("ProfileSubsystem: initing " + className);
profile.setId(id);
profile.init(this, subStoreConfig);
- mProfileIds.addElement(id);
mProfiles.put(id, profile);
mProfileClassIds.put(id, classid);
if (isNew)
@@ -179,7 +177,6 @@ public class ProfileSubsystem
if (!file1.delete()) {
CMS.debug("ProfileSubsystem: deleteProfile: Cannot delete the configuration file : " + configPath);
}
- mProfileIds.removeElement(id);
mProfiles.remove(id);
mProfileClassIds.remove(id);
try {
@@ -226,7 +223,6 @@ public class ProfileSubsystem
* <P>
*/
public void shutdown() {
- mProfileIds.clear();
mProfiles.clear();
mProfileClassIds.clear();
}