jdk/src/share/classes/java/sql/DriverManager.java
changeset 7803 56bc97d69d93
parent 5506 202f599c92aa
child 8797 e8507464a69d
equal deleted inserted replaced
7802:74f2ee2b62ba 7803:56bc97d69d93
   362      * <CODE>d.getClass().getName()</CODE>
   362      * <CODE>d.getClass().getName()</CODE>
   363      *
   363      *
   364      * @return the list of JDBC Drivers loaded by the caller's class loader
   364      * @return the list of JDBC Drivers loaded by the caller's class loader
   365      */
   365      */
   366     public static java.util.Enumeration<Driver> getDrivers() {
   366     public static java.util.Enumeration<Driver> getDrivers() {
   367         java.util.Vector<Driver> result = new java.util.Vector<Driver>();
   367         java.util.Vector<Driver> result = new java.util.Vector<>();
   368         java.util.Vector drivers = null;
   368         java.util.Vector drivers = null;
   369 
   369 
   370         if (!initialized) {
   370         if (!initialized) {
   371             initialize();
   371             initialize();
   372         }
   372         }