-
Bug
-
Resolution: Fixed
-
P4
-
13
-
b25
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8226096 | 14 | Chris Hegarty | P4 | Resolved | Fixed | team |
The fix for JDK-8224477 missed the `@` in a couple of code tags.
diff --git a/src/java.base/share/classes/java/net/SocketImpl.java b/src/java.base/share/classes/java/net/SocketImpl.java
--- a/src/java.base/share/classes/java/net/SocketImpl.java
+++ b/src/java.base/share/classes/java/net/SocketImpl.java
@@ -396,7 +396,7 @@
*
* @implSpec
* The default implementation of this method first checks that the given
- * socket option {code name} is not null, then throws {@code
+ * socket option {@code name} is not null, then throws {@code
* UnsupportedOperationException}. Subclasses should override this method
* with an appropriate implementation.
*
@@ -424,7 +424,7 @@
*
* @implSpec
* The default implementation of this method first checks that the given
- * socket option {code name} is not null, then throws {@code
+ * socket option {@code name} is not null, then throws {@code
* UnsupportedOperationException}. Subclasses should override this method
* with an appropriate implementation.
*
diff --git a/src/java.base/share/classes/java/net/SocketImpl.java b/src/java.base/share/classes/java/net/SocketImpl.java
--- a/src/java.base/share/classes/java/net/SocketImpl.java
+++ b/src/java.base/share/classes/java/net/SocketImpl.java
@@ -396,7 +396,7 @@
*
* @implSpec
* The default implementation of this method first checks that the given
- * socket option {code name} is not null, then throws {@code
+ * socket option {@code name} is not null, then throws {@code
* UnsupportedOperationException}. Subclasses should override this method
* with an appropriate implementation.
*
@@ -424,7 +424,7 @@
*
* @implSpec
* The default implementation of this method first checks that the given
- * socket option {code name} is not null, then throws {@code
+ * socket option {@code name} is not null, then throws {@code
* UnsupportedOperationException}. Subclasses should override this method
* with an appropriate implementation.
*
- backported by
-
JDK-8226096 Missed the `@` in a couple of code tags of SocketImpl
-
- Resolved
-
- relates to
-
JDK-8224477 java.net socket types new-style socket option methods - spec and impl mismatch
-
- Resolved
-