diff --git a/jdk/src/share/classes/com/sun/jdi/request/EventRequest.java b/jdk/src/share/classes/com/sun/jdi/request/EventRequest.java index 8b64f1f2457..7446025e948 100644 --- a/jdk/src/share/classes/com/sun/jdi/request/EventRequest.java +++ b/jdk/src/share/classes/com/sun/jdi/request/EventRequest.java @@ -103,7 +103,7 @@ public interface EventRequest extends Mirror { * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest, * val is true, and the - * thread named in the request has died. + * thread named in the request has died or is not yet started. */ void setEnabled(boolean val); @@ -112,7 +112,7 @@ public interface EventRequest extends Mirror { * @throws InvalidRequestStateException if this request * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest - * and the thread named in the request has died. + * and the thread named in the request has died or is not yet started. */ void enable();