jdk/src/java.sql/share/classes/java/sql/DriverManager.java
changeset 35302 e4d2275861c3
parent 31469 92cc72d2a11a
child 37363 329dba26ffd2
equal deleted inserted replaced
35301:12dabfdd1997 35302:e4d2275861c3
   447     /**
   447     /**
   448      * Retrieves a Stream with all of the currently loaded JDBC drivers
   448      * Retrieves a Stream with all of the currently loaded JDBC drivers
   449      * to which the current caller has access.
   449      * to which the current caller has access.
   450      *
   450      *
   451      * @return the stream of JDBC Drivers loaded by the caller's class loader
   451      * @return the stream of JDBC Drivers loaded by the caller's class loader
   452      * @since 1.9
   452      * @since 9
   453      */
   453      */
   454     @CallerSensitive
   454     @CallerSensitive
   455     public static Stream<Driver> drivers() {
   455     public static Stream<Driver> drivers() {
   456         ensureDriversInitialized();
   456         ensureDriversInitialized();
   457 
   457