summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java')
-rw-r--r--pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java b/pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java
index b5f829f77..2435fa462 100644
--- a/pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java
+++ b/pki/base/common/src/com/netscape/cmscore/profile/ProfileSubsystem.java
@@ -251,7 +251,7 @@ public class ProfileSubsystem implements IProfileSubsystem {
public String getProfileEnableBy(String id) {
if (!isProfileEnable(id))
return null;
- IProfile profile = (IProfile) mProfiles.get(id);
+ IProfile profile = mProfiles.get(id);
String enableBy = null;
try {
@@ -295,11 +295,11 @@ public class ProfileSubsystem implements IProfileSubsystem {
*/
public IProfile getProfile(String id)
throws EProfileException {
- return (IProfile) mProfiles.get(id);
+ return mProfiles.get(id);
}
public String getProfileClassId(String id) {
- return (String) mProfileClassIds.get(id);
+ return mProfileClassIds.get(id);
}
/**