Removing unncessary brackets

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1091344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-04-12 09:38:46 +00:00
parent 329b2576f8
commit 7cf67797a0
2 changed files with 2 additions and 2 deletions

View File

@ -219,7 +219,7 @@ public static <T> Constructor<T> getAccessibleConstructor(Class<T> cls,
try { try {
return getAccessibleConstructor(cls.getConstructor(parameterTypes)); return getAccessibleConstructor(cls.getConstructor(parameterTypes));
} catch (NoSuchMethodException e) { } catch (NoSuchMethodException e) {
return (null); return null;
} }
} }

View File

@ -370,7 +370,7 @@ public static Method getAccessibleMethod(Class<?> cls, String methodName,
return getAccessibleMethod(cls.getMethod(methodName, return getAccessibleMethod(cls.getMethod(methodName,
parameterTypes)); parameterTypes));
} catch (NoSuchMethodException e) { } catch (NoSuchMethodException e) {
return (null); return null;
} }
} }