Remove code that accounts for Java 1.1 and 1.2
Didn't get quite right in the previous commit
This commit is contained in:
@@ -173,7 +173,7 @@ public class SimpleLog implements Log, Serializable {
|
||||
// Get the thread context class loader (if there is one)
|
||||
try {
|
||||
classLoader = Thread.currentThread().getContextClassLoader();
|
||||
} catch (final SecurityException e) {
|
||||
} catch (final RuntimeException e) {
|
||||
/**
|
||||
* getContextClassLoader() throws SecurityException when the context class loader isn't an ancestor of the calling class's class loader, or if
|
||||
* security permissions are restricted.
|
||||
@@ -183,8 +183,10 @@ public class SimpleLog implements Log, Serializable {
|
||||
*/
|
||||
// Capture 'e.getTargetException()' exception for details
|
||||
// alternate: log 'e.getTargetException()', and pass back 'e'.
|
||||
if (!(e instanceof SecurityException)) {
|
||||
throw new LogConfigurationException("Unexpected SecurityException", e);
|
||||
}
|
||||
}
|
||||
|
||||
if (classLoader == null) {
|
||||
classLoader = SimpleLog.class.getClassLoader();
|
||||
|
||||
Reference in New Issue
Block a user