forked from External/mage
C-style arrays declaration should be replaced to java-style
This commit is contained in:
parent
b23ccb8191
commit
022c1407ed
4 changed files with 4 additions and 4 deletions
|
|
@ -42,7 +42,7 @@ public final class SystemUtil {
|
|||
Method method = clazz.getMethod(methodName);
|
||||
Object appInstance = method.invoke(clazz);
|
||||
|
||||
Class params[] = new Class[]{Window.class};
|
||||
Class[] params = new Class[]{Window.class};
|
||||
method = clazz.getMethod(methodName2, params);
|
||||
method.invoke(appInstance, window);
|
||||
} catch (Throwable t) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue