Fixed some warnings DA was getting.

This commit is contained in:
Cekis
2016-03-17 19:24:10 +00:00
parent abbab0025a
commit cac0280db6
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -391,7 +391,7 @@ public class script_entry
{
if (params == null)
{
meth = cls.getDeclaredMethod(method, null);
meth = cls.getDeclaredMethod(method);
}
else
{
@@ -1033,7 +1033,7 @@ public class script_entry
Method meth = null;
if (params == null)
{
meth = cls.getDeclaredMethod(method, null);
meth = cls.getDeclaredMethod(method);
}
else
{