suppress warnings about inexact argument type

This commit is contained in:
Ivan Timofeev
2011-11-04 13:08:38 +04:00
parent 249df7bf9a
commit 504b384dd1
2 changed files with 7 additions and 15 deletions

View File

@@ -291,15 +291,12 @@ public abstract class DataAware {
* @param obj the object which contains the property.
* @return the get method reflection object.
*/
private static Class[] EMPTY_ARRAY = new Class[0];
protected Method createGetMethod(String propName, Object obj)
{
Method m = null;
try
{ //try to get a "get" method.
m = obj.getClass().getMethod("get" + propName, EMPTY_ARRAY);
m = obj.getClass().getMethod("get" + propName, (Class[]) null);
}
catch (NoSuchMethodException ex1)
{
@@ -313,7 +310,7 @@ public abstract class DataAware {
*/
public Object get(Object target) {
try {
return getMethod.invoke(target, EMPTY_ARRAY);
return getMethod.invoke(target, (Object[]) null);
} catch (IllegalAccessException ex1) {
ex1.printStackTrace();
} catch (InvocationTargetException ex2) {

View File

@@ -42,10 +42,6 @@ import java.lang.reflect.Method;
*/
public class MethodInvocation
{
static final Class[] EMPTY_ARRAY =
{
};
//the method to invoke.
Method mMethod;
//the object to invoke the method on.
@@ -66,7 +62,7 @@ public class MethodInvocation
public MethodInvocation(String methodName, Object obj, Class paramClass) throws NoSuchMethodException
{
this(paramClass == null ? obj.getClass().getMethod(methodName, null) : obj.getClass().getMethod(methodName, new Class[]
this(paramClass == null ? obj.getClass().getMethod(methodName, (Class[]) null) : obj.getClass().getMethod(methodName, new Class[]
{
paramClass
}), obj, paramClass);
@@ -86,12 +82,11 @@ public class MethodInvocation
{
if (mWithParam)
{
return mMethod.invoke(mObject, (Object) param
);
return mMethod.invoke(mObject, (Object) param);
}
else
{
return mMethod.invoke(mObject, EMPTY_ARRAY);
return mMethod.invoke(mObject, (Object[]) null);
}
}