summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/base/PropConfigStore.java
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-05 15:08:18 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-09 10:22:03 -0500
commit3f24e55923fc986af4c6a08b2b8d45704a905627 (patch)
tree716415853b5676b801f6707634305b59b9af8603 /base/common/src/com/netscape/cmscore/base/PropConfigStore.java
parent7c7b9d023cd466c1771068badc020dab36beb553 (diff)
downloadpki-3f24e55923fc986af4c6a08b2b8d45704a905627.tar.gz
pki-3f24e55923fc986af4c6a08b2b8d45704a905627.tar.xz
pki-3f24e55923fc986af4c6a08b2b8d45704a905627.zip
Removed unnecessary type casts.
Unnecessary type casts have been removed using Eclipse Quick Fix. Ticket #134
Diffstat (limited to 'base/common/src/com/netscape/cmscore/base/PropConfigStore.java')
-rw-r--r--base/common/src/com/netscape/cmscore/base/PropConfigStore.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/common/src/com/netscape/cmscore/base/PropConfigStore.java b/base/common/src/com/netscape/cmscore/base/PropConfigStore.java
index ee4370053..075d4be78 100644
--- a/base/common/src/com/netscape/cmscore/base/PropConfigStore.java
+++ b/base/common/src/com/netscape/cmscore/base/PropConfigStore.java
@@ -334,7 +334,7 @@ public class PropConfigStore implements IConfigStore, Cloneable {
*/
public byte[] getByteArray(String name, byte defval[])
throws EBaseException {
- String str = (String) get(name);
+ String str = get(name);
if (str == null || str.length() == 0) {
CMS.traceHashKey(mDebugType, getFullName(name),
@@ -379,7 +379,7 @@ public class PropConfigStore implements IConfigStore, Cloneable {
* @exception EBaseException failed to retrieve
*/
public boolean getBoolean(String name) throws EBaseException {
- String value = (String) get(name);
+ String value = get(name);
if (value == null) {
CMS.traceHashKey(mDebugType, getFullName(name), "<notpresent>");
@@ -445,7 +445,7 @@ public class PropConfigStore implements IConfigStore, Cloneable {
* @exception EBaseException failed to retrieve value
*/
public int getInteger(String name) throws EBaseException {
- String value = (String) get(name);
+ String value = get(name);
if (value == null) {
CMS.traceHashKey(mDebugType, getFullName(name), "<notpresent>");
@@ -505,7 +505,7 @@ public class PropConfigStore implements IConfigStore, Cloneable {
* @exception EBaseException failed to retrieve value
*/
public BigInteger getBigInteger(String name) throws EBaseException {
- String value = (String) get(name);
+ String value = get(name);
if (value == null) {
CMS.traceHashKey(mDebugType, getFullName(name), "<notpresent>");