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:
parent
0d31f27386
commit
99155e564c
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -292,7 +292,7 @@ public class ValueServer {
|
|||
try {
|
||||
filePointer.close();
|
||||
filePointer = null;
|
||||
} catch (IOException ex) {
|
||||
} catch (IOException ex) { //NOPMD
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue