8247677: Incorrect class name displayed in DriverManager trace output
Reviewed-by: joehw
This commit is contained in:
parent
1982432db4
commit
023c53d190
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -449,7 +449,7 @@ public class DriverManager {
|
||||
if (isDriverAllowed(aDriver.driver, callerClass)) {
|
||||
result.add(aDriver.driver);
|
||||
} else {
|
||||
println(" skipping: " + aDriver.getClass().getName());
|
||||
println(" skipping: " + aDriver.driver.getClass().getName());
|
||||
}
|
||||
}
|
||||
return result;
|
||||
@ -687,7 +687,7 @@ public class DriverManager {
|
||||
}
|
||||
|
||||
} else {
|
||||
println(" skipping: " + aDriver.getClass().getName());
|
||||
println(" skipping: " + aDriver.driver.getClass().getName());
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user