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 {
|
} finally {
|
||||||
try {
|
try {
|
||||||
in.close();
|
in.close();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) { //NOPMD
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -301,7 +301,7 @@ public class EmpiricalDistribution extends AbstractRealDistribution {
|
||||||
} finally {
|
} finally {
|
||||||
try {
|
try {
|
||||||
in.close();
|
in.close();
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) { //NOPMD
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -292,7 +292,7 @@ public class ValueServer {
|
||||||
try {
|
try {
|
||||||
filePointer.close();
|
filePointer.close();
|
||||||
filePointer = null;
|
filePointer = null;
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) { //NOPMD
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue