diff options
| -rw-r--r-- | id.server/src/at/gv/egovernment/moa/id/proxy/invoke/GetAuthenticationDataInvoker.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| 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});          } | 
