-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 6
-
Component/s: core-libs
-
b03
-
generic
-
generic
-
Not verified
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-2152541 | OpenJDK6 | Martin Buchholz | P3 | Resolved | Fixed | b01 |
ScheduledThreadPoolExecutor and AbstractExecutorService
have a number of public methods
without a javadoc comment, relying on default javadoc inheritance.
But it's an old story; unchecked exception specifications are not inherited,
and so implementing classes need to add comments like this:
+ /**
+ * @throws RejectedExecutionException {@inheritDoc}
+ * @throws NullPointerException {@inheritDoc}
+ */
have a number of public methods
without a javadoc comment, relying on default javadoc inheritance.
But it's an old story; unchecked exception specifications are not inherited,
and so implementing classes need to add comments like this:
+ /**
+ * @throws RejectedExecutionException {@inheritDoc}
+ * @throws NullPointerException {@inheritDoc}
+ */
- backported by
-
JDK-2152541 Executor classes missing unchecked exception specs
-
- Resolved
-