You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2020/09/01 17:42:30 UTC

[jmeter] branch master updated: Add generics info, mainly to trigger CI build

This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 17812bd  Add generics info, mainly to trigger CI build
17812bd is described below

commit 17812bdae607c277c425d0a4a1d1fef7963f7962
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Tue Sep 1 19:42:15 2020 +0200

    Add generics info, mainly to trigger CI build
---
 .../src/main/java/org/apache/jmeter/assertions/SMIMEAssertion.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/src/main/java/org/apache/jmeter/assertions/SMIMEAssertion.java b/src/components/src/main/java/org/apache/jmeter/assertions/SMIMEAssertion.java
index 7851c55..fffcf42 100644
--- a/src/components/src/main/java/org/apache/jmeter/assertions/SMIMEAssertion.java
+++ b/src/components/src/main/java/org/apache/jmeter/assertions/SMIMEAssertion.java
@@ -149,7 +149,7 @@ class SMIMEAssertion {
         AssertionResult res = new AssertionResult(name);
 
         try {
-            Store certs = s.getCertificates();
+            Store<?> certs = s.getCertificates();
             SignerInformationStore signers = s.getSignerInfos();
             Iterator<?> signerIt = signers.getSigners().iterator();