mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
Fixed some warnings DA was getting.
This commit is contained in:
Regular → Executable
+2
-2
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user