Adding NOPMD statement to empty catch
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1145035 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d12a0bf808
commit
501363c813
|
@ -801,7 +801,8 @@ public class ClassUtils {
|
|||
return getClass(classLoader, className.substring(0, lastDotIndex) +
|
||||
INNER_CLASS_SEPARATOR_CHAR + className.substring(lastDotIndex + 1),
|
||||
initialize);
|
||||
} catch (ClassNotFoundException ex2) {
|
||||
} catch (ClassNotFoundException ex2) { // NOPMD
|
||||
// ignore exception
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue