Don't swallow exceptions unnecessarily
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@964215
13f79535-47bb-0310-9956-
ffa450edef68
String encoding = null;
try {
encoding = System.getProperty("file.encoding");
- } catch (Exception e) {
+ } catch (SecurityException e) {
return;
}
if (encoding.indexOf("EBCDIC")!=-1) {
one of them fails, do not ignore the others. (markt/kkolinko)
</fix>
<fix>
+ <bug>49128</bug>: Don't swallow exceptions unnecessarily in
+ <code>WebappClassLoader.start()</code>. (markt)
+ </fix>
+ <fix>
<bug>49182</bug>: Align comments in setclasspath.[sh|bat] with
behaviour. Based on a patch provided by sebb. (markt)
</fix>