summaryrefslogtreecommitdiffstats
path: root/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-28 11:27:57 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:03:03 +0200
commit7af400558072e2f328f078e39a121a95bb928804 (patch)
tree464515102ce5d6cad3b5a304e77737532d206e83 /jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
parentJava5 update - convert Hashtable to HashMap (diff)
downloadcore-7af400558072e2f328f078e39a121a95bb928804.tar.gz
core-7af400558072e2f328f078e39a121a95bb928804.zip
Java5 update - convert code to use generics
Change-Id: Iff078cea287d0c508d2442d65cd9314ec3231c15
Diffstat (limited to 'jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java')
-rw-r--r--jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java b/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
index 9fcb929c56fc..d8134efbd69f 100644
--- a/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
+++ b/jurt/test/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory_Test.java
@@ -65,7 +65,7 @@ public final class ProxyFactory_Test {
}
private void testExceptions(TestRequestHandler handler, Method method,
- Object obj, Object[] args, Class[] exceptions)
+ Object obj, Object[] args, Class<?>[] exceptions)
throws Exception
{
for (int i = 0; i < exceptions.length; ++i) {
@@ -75,7 +75,7 @@ public final class ProxyFactory_Test {
}
private void testExceptionType(Method method, Object obj, Object[] args,
- Class exception) throws Exception {
+ Class<?> exception) throws Exception {
try {
method.invoke(obj, args);
assertNull(exception);