From 0a1740cb4dad5e763515fb233f2f68a2ee638f7d Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Sat, 9 Apr 2011 02:14:26 +0000 Subject: [PATCH] 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 --- src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java index fbaf6df70..974b40a41 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java @@ -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;