summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-12-04 16:55:19 +0200
committerTor Lillqvist <tml@collabora.com>2014-12-04 16:59:19 +0200
commit71c58fce69cc1a463d9b9a5711718211adf414fe (patch)
tree6f2205cf9a69fb2a7f5aaa67541df62fbe11e0c9 /xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx
parent0a40d6c3abba6f005e1b7806919e5169e032f985 (diff)
Bin noise comments
Change-Id: I084040ff90ee30aa83ac5d3ad11365768272ec65
Diffstat (limited to 'xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx')
-rw-r--r--xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx
index 82211dc04184..a4e57b356579 100644
--- a/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx
+++ b/xmlsecurity/source/xmlsec/nss/xmlsignature_nssimpl.cxx
@@ -107,7 +107,7 @@ SAL_CALL XMLSignature_NssImpl :: generate(
throw RuntimeException() ;
}
- //i39448 : the key manager should be retrieved from SecurityEnvironment, instead of SecurityContext
+ // the key manager should be retrieved from SecurityEnvironment, instead of SecurityContext
SecurityEnvironment_NssImpl* pSecEnv =
reinterpret_cast<SecurityEnvironment_NssImpl*>(
@@ -118,7 +118,7 @@ SAL_CALL XMLSignature_NssImpl :: generate(
setErrorRecorder();
- pMngr = pSecEnv->createKeysManager() ; //i39448
+ pMngr = pSecEnv->createKeysManager();
if( !pMngr ) {
throw RuntimeException() ;
}
@@ -127,7 +127,7 @@ SAL_CALL XMLSignature_NssImpl :: generate(
pDsigCtx = xmlSecDSigCtxCreate( pMngr ) ;
if( pDsigCtx == NULL )
{
- pSecEnv->destroyKeysManager( pMngr ) ; //i39448
+ pSecEnv->destroyKeysManager( pMngr );
//throw XMLSignatureException() ;
clearErrorRecorder();
return aTemplate;
@@ -148,7 +148,7 @@ SAL_CALL XMLSignature_NssImpl :: generate(
xmlSecDSigCtxDestroy( pDsigCtx ) ;
- pSecEnv->destroyKeysManager( pMngr ) ; //i39448
+ pSecEnv->destroyKeysManager( pMngr );
//Unregistered the stream/URI binding
if( xUriBinding.is() )
@@ -226,7 +226,7 @@ SAL_CALL XMLSignature_NssImpl :: validate(
if( pSecEnv == NULL )
throw RuntimeException() ;
- pMngr = pSecEnv->createKeysManager() ; //i39448
+ pMngr = pSecEnv->createKeysManager();
if( !pMngr ) {
throw RuntimeException() ;
}
@@ -235,7 +235,7 @@ SAL_CALL XMLSignature_NssImpl :: validate(
pDsigCtx = xmlSecDSigCtxCreate( pMngr ) ;
if( pDsigCtx == NULL )
{
- pSecEnv->destroyKeysManager( pMngr ) ; //i39448
+ pSecEnv->destroyKeysManager( pMngr );
//throw XMLSignatureException() ;
clearErrorRecorder();
return aTemplate;