diff --git a/build.xml b/build.xml index 949bd4c5e0..ff2f3bd04c 100644 --- a/build.xml +++ b/build.xml @@ -812,8 +812,8 @@ > map) throws SQLException; /** @@ -478,7 +478,7 @@ public Object getObject(int parameterIndex, Map map) * @throws SQLException * if there is a problem accessing the database */ - public Object getObject(String parameterName, Map map) + public Object getObject(String parameterName, Map> map) throws SQLException; /** diff --git a/java/stubs/jdbc3/java/sql/Connection.java b/java/stubs/jdbc3/java/sql/Connection.java index ce66361a4c..4683299b16 100644 --- a/java/stubs/jdbc3/java/sql/Connection.java +++ b/java/stubs/jdbc3/java/sql/Connection.java @@ -252,7 +252,7 @@ public Statement createStatement(int resultSetType, * @throws SQLException * if there is a problem accessing the database */ - public Map getTypeMap() throws SQLException; + public Map> getTypeMap() throws SQLException; /** * Gets the first instance of any SQLWarning objects that may @@ -755,5 +755,5 @@ public PreparedStatement prepareStatement(String sql, String[] columnNames) * if there is a problem accessing the database or if * map is not an instance of {@link Map}. */ - public void setTypeMap(Map map) throws SQLException; + public void setTypeMap(Map> map) throws SQLException; } diff --git a/java/stubs/jdbc3/java/sql/DriverManager.java b/java/stubs/jdbc3/java/sql/DriverManager.java index f68faf900b..bff70d1f34 100644 --- a/java/stubs/jdbc3/java/sql/DriverManager.java +++ b/java/stubs/jdbc3/java/sql/DriverManager.java @@ -50,7 +50,7 @@ public class DriverManager { * Set to hold Registered Drivers - initial capacity 10 drivers (will expand * automatically if necessary. */ - private static final List theDrivers = new ArrayList(10); + private static final List theDrivers = new ArrayList(10); // Permission for setting log private static final SQLPermission logPermission = null;