From 1e90e30a334e6016b392e7e7b941475772623289 Mon Sep 17 00:00:00 2001 From: "peter.danner" Date: Fri, 3 Feb 2006 13:27:34 +0000 Subject: now compiles with jdk 1.5.0 ff. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@619 d688527b-c9ab-4aba-bd8d-4036d912da1d --- .../egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'id.server') diff --git a/id.server/src/at/gv/egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java b/id.server/src/at/gv/egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java index 4e9a72111..f7e5299ab 100644 --- a/id.server/src/at/gv/egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java +++ b/id.server/src/at/gv/egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java @@ -67,8 +67,8 @@ public class GetAuthenticationDataInvoker { try { if (apiServer == null) { Class serverClass = Class.forName("at.gv.egovernment.moa.id.auth.AuthenticationServer"); - Method getInstanceMethod = serverClass.getMethod("getInstance", null); - apiServer = getInstanceMethod.invoke(null, null); + Method getInstanceMethod = serverClass.getMethod("getInstance", (Class[]) null); + apiServer = getInstanceMethod.invoke(null, (Object[]) null); apiMethod = serverClass.getMethod( "getAuthenticationData", new Class[] {String.class}); } -- cgit v1.2.3