Muted pmd for empty catch blocks.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1422350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2012-12-15 20:47:47 +00:00
parent 0d31f27386
commit 99155e564c
2 changed files with 3 additions and 3 deletions

View File

@ -269,7 +269,7 @@ public class EmpiricalDistribution extends AbstractRealDistribution {
} finally {
try {
in.close();
} catch (IOException ex) {
} catch (IOException ex) { //NOPMD
// ignore
}
}
@ -301,7 +301,7 @@ public class EmpiricalDistribution extends AbstractRealDistribution {
} finally {
try {
in.close();
} catch (IOException ex) {
} catch (IOException ex) { //NOPMD
// ignore
}
}

View File

@ -292,7 +292,7 @@ public class ValueServer {
try {
filePointer.close();
filePointer = null;
} catch (IOException ex) {
} catch (IOException ex) { //NOPMD
// ignore
}
}