diff --git a/src/share/classes/java/sql/CallableStatement.java b/src/share/classes/java/sql/CallableStatement.java index dc98859bf8bd22b91e0595f8becfb1a3b3a4cb19..a41aa10fa1e2acb363d8f449c1b9bae5a581c746 100644 --- a/src/share/classes/java/sql/CallableStatement.java +++ b/src/share/classes/java/sql/CallableStatement.java @@ -56,7 +56,7 @@ import java.io.InputStream; * For maximum portability, a call's ResultSet objects and * update counts should be processed prior to getting the values of output * parameters. - *

+ * * * @see Connection#prepareCall * @see ResultSet diff --git a/src/share/classes/java/sql/Connection.java b/src/share/classes/java/sql/Connection.java index 9b6706562ba7e2b2a81974370f87c5702baded95..3077c3c278cd3506d2539db4ca80d36534205dac 100644 --- a/src/share/classes/java/sql/Connection.java +++ b/src/share/classes/java/sql/Connection.java @@ -611,7 +611,7 @@ public interface Connection extends Wrapper, AutoCloseable { * Map object returned from * getTypeMap as a JDBC driver may create an internal * copy of the Map object passed to setTypeMap: - *

+ * *

      *      Map<String,Class<?>> myMap = con.getTypeMap();
      *      myMap.put("mySchemaName.ATHLETES", Athletes.class);
@@ -636,7 +636,7 @@ public interface Connection  extends Wrapper, AutoCloseable {
      * You must set the the values for the TypeMap prior to
      * callng setMap as a JDBC driver may create an internal copy
      * of the TypeMap:
-     * 

+ * *

      *      Map myMap<String,Class<?>> = new HashMap<String,Class<?>>();
      *      myMap.put("mySchemaName.ATHLETES", Athletes.class);
@@ -1119,7 +1119,7 @@ public interface Connection  extends Wrapper, AutoCloseable {
          * @exception SQLException if the value supplied for timeout
          * is less then 0
          * @since 1.6
-         * 

+ * * @see java.sql.DatabaseMetaData#getClientInfoProperties */ boolean isValid(int timeout) throws SQLException; @@ -1154,7 +1154,7 @@ public interface Connection extends Wrapper, AutoCloseable { * required to support these properties however if the driver supports a * client info property that can be described by one of the standard * properties, the standard property name should be used. - *

+ * *