From ae40a61ee51f5c4dd67a4859312d09ec13c7f1e2 Mon Sep 17 00:00:00 2001 From: Fredrik Arvidsson Date: Mon, 24 Feb 2014 10:34:07 +0100 Subject: [PATCH] 8034203: Change JavaDoc for com.sun.jdi.request.EventRequest.setEnabled(boolean val) Added small corrections to the JavaDoc comments in the code. Reviewed-by: sla --- jdk/src/share/classes/com/sun/jdi/request/EventRequest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();