summaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.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/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java
parent2c69a5846580c161befcfc6e01d02d41099a52ea (diff)
avoid warnings
Diffstat (limited to 'jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java')
-rw-r--r--jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java b/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java
index bcb4a0b4fd7..85a80d0ffeb 100644
--- a/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java
+++ b/jdisc_core_test/integration_test/src/test/java/com/yahoo/jdisc/client/ClientDriverIntegrationTest.java
@@ -55,7 +55,7 @@ public class ClientDriverIntegrationTest {
}
try {
List<Bundle> bundles = installer.installAndStart("cert-a.jar");
- Class classObj = bundles.get(0).loadClass("com.yahoo.jdisc.bundle.a.CertificateA");
+ Class<?> classObj = bundles.get(0).loadClass("com.yahoo.jdisc.bundle.a.CertificateA");
log.info("Loaded '" + classObj.getName() + "'.");
} catch (Exception e) {
throw new AssertionError(e);