From 5a943b74eef222753006c1ee4b575283050c0dbd Mon Sep 17 00:00:00 2001 From: Adam Young Date: Thu, 10 Nov 2011 11:24:16 -0500 Subject: unnecessary block removal This patch removes all of the unneeded blocks that surrounded code cleaned up with the dead code removal. https://bugzilla.redhat.com/show_bug.cgi?id=728303 --- pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java') diff --git a/pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java b/pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java index b7f7fb346..fef68c1cb 100644 --- a/pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java +++ b/pki/base/common/src/com/netscape/cms/authentication/CMCAuth.java @@ -906,10 +906,8 @@ public class CMCAuth implements IAuthManager, IExtendedPluginInfo, // find from internaldb if it's ca. (ra does not have that.) // find from internaldb usrgrp info - { - // find from certDB - si.verify(digest, id); - } + // find from certDB + si.verify(digest, id); } // } -- cgit