You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/08/28 10:22:51 UTC

svn commit: r1518099 - /jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java

Author: sebb
Date: Wed Aug 28 08:22:50 2013
New Revision: 1518099

URL: http://svn.apache.org/r1518099
Log:
Add temporary cast to trace issue with buildbot build

Modified:
    jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java

Modified: jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java?rev=1518099&r1=1518098&r2=1518099&view=diff
==============================================================================
--- jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java (original)
+++ jmeter/trunk/src/components/org/apache/jmeter/assertions/SMIMEAssertion.java Wed Aug 28 08:22:50 2013
@@ -95,10 +95,12 @@ class SMIMEAssertion {
             }
             if (msg.isMimeType("multipart/signed")) { // $NON-NLS-1$
                 MimeMultipart multipart = (MimeMultipart) msg.getContent();
-                s = new SMIMESignedParser(new BcDigestCalculatorProvider(), multipart);
+                // temporary cast to try and trace issue with buildbot trunk build
+                s = new SMIMESignedParser((org.bouncycastle.operator.DigestCalculatorProvider) new BcDigestCalculatorProvider(), multipart);
             } else if (msg.isMimeType("application/pkcs7-mime") // $NON-NLS-1$
                     || msg.isMimeType("application/x-pkcs7-mime")) { // $NON-NLS-1$
-                s = new SMIMESignedParser(new BcDigestCalculatorProvider(), msg);
+                // temporary cast to try and trace issue with buildbot trunk build
+                s = new SMIMESignedParser((org.bouncycastle.operator.DigestCalculatorProvider) new BcDigestCalculatorProvider(), msg);
             }
 
             if (null != s) {