Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8143527 | emb-9 | Lance Andersen | P4 | Resolved | Fixed | team |
ljanders% hg diff Connection.java
diff -r 67d91e7479c1 src/java.sql/share/classes/java/sql/Connection.java
--- a/src/java.sql/share/classes/java/sql/Connection.java Thu Nov 05 10:37:08 2015 -0500
+++ b/src/java.sql/share/classes/java/sql/Connection.java Thu Nov 05 10:52:27 2015 -0500
@@ -1540,7 +1540,7 @@
* @throws SQLException if an error occurs
* @since 1.9
* @see endRequest
- * @see PooledConnection
+ * @see javax.sql.PooledConnection
*/
default void beginRequest() throws SQLException {
// Default method takes no action
@@ -1570,7 +1570,7 @@
* <p>
* The pooling manager should call {@code endRequest} on the underlying connection
* when the applications returns the connection back to the connection pool.
- * <p<
+ * <p>
* The pooling manager does not need to call {@code endRequest} if:
* <ul>
* <li>The connection pool caches {@code PooledConnection} objects</li>
@@ -1582,7 +1582,7 @@
* @throws SQLException if an error occurs
* @since 1.9
* @see beginRequest
- * @see PooledConnection
+ * @see javax.sql.PooledConnection
*/
default void endRequest() throws SQLException {
// Default method takes no action
diff -r 67d91e7479c1 src/java.sql/share/classes/java/sql/Connection.java
--- a/src/java.sql/share/classes/java/sql/Connection.java Thu Nov 05 10:37:08 2015 -0500
+++ b/src/java.sql/share/classes/java/sql/Connection.java Thu Nov 05 10:52:27 2015 -0500
@@ -1540,7 +1540,7 @@
* @throws SQLException if an error occurs
* @since 1.9
* @see endRequest
- * @see PooledConnection
+ * @see javax.sql.PooledConnection
*/
default void beginRequest() throws SQLException {
// Default method takes no action
@@ -1570,7 +1570,7 @@
* <p>
* The pooling manager should call {@code endRequest} on the underlying connection
* when the applications returns the connection back to the connection pool.
- * <p<
+ * <p>
* The pooling manager does not need to call {@code endRequest} if:
* <ul>
* <li>The connection pool caches {@code PooledConnection} objects</li>
@@ -1582,7 +1582,7 @@
* @throws SQLException if an error occurs
* @since 1.9
* @see beginRequest
- * @see PooledConnection
+ * @see javax.sql.PooledConnection
*/
default void endRequest() throws SQLException {
// Default method takes no action
- backported by
-
JDK-8143527 fix typo in Connection.java due to 8136496
-
- Resolved
-