Changing comment so PMD notices the NOPMD

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1090510 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-04-09 02:14:26 +00:00
parent 235040fa98
commit 0a1740cb4d
1 changed files with 1 additions and 1 deletions

View File

@ -511,7 +511,7 @@ public static Method getMatchingAccessibleMethod(Class<?> cls,
Method method = cls.getMethod(methodName, parameterTypes);
MemberUtils.setAccessibleWorkaround(method);
return method;
} catch (NoSuchMethodException e) { /* SWALLOW - NOPMD */
} catch (NoSuchMethodException e) { // NOPMD - Swallow the exception
}
// search through all methods
Method bestMatch = null;