aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-27 11:57:02 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-27 11:57:02 +0200
commitd5e1c475954a855c458cfe469c1335027d445e1c (patch)
treea7c9b8d4dda6725d993d5404a682cdda188bff2c /jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
parent2c69a5846580c161befcfc6e01d02d41099a52ea (diff)
avoid warnings
Diffstat (limited to 'jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java')
-rw-r--r--jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java b/jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
index a921059c47a..af6959926f1 100644
--- a/jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
+++ b/jdisc_core_test/test_bundles/cert-ml/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
@@ -11,7 +11,7 @@ public class CertificateM implements Callable<Integer> {
@Override
@SuppressWarnings({ "unchecked" })
public Integer call() throws Exception {
- Class certClass = Class.forName("com.yahoo.jdisc.bundle.l.CertificateL");
+ Class<?> certClass = Class.forName("com.yahoo.jdisc.bundle.l.CertificateL");
Callable<Integer> cert = (Callable<Integer>)certClass.newInstance();
return cert.call();
}