Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java
index a93613e09..64047fa19 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.jdi.internal.request;
-
import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.EventImpl;
import org.eclipse.jdi.internal.event.MethodExitEventImpl;
@@ -18,12 +17,12 @@ import org.eclipse.jdi.internal.event.MethodExitEventImpl;
import com.sun.jdi.request.MethodExitRequest;
/**
- * this class implements the corresponding interfaces
- * declared by the JDI specification. See the com.sun.jdi package
- * for more information.
- *
+ * this class implements the corresponding interfaces declared by the JDI
+ * specification. See the com.sun.jdi package for more information.
+ *
*/
-public class MethodExitRequestImpl extends EventRequestImpl implements MethodExitRequest {
+public class MethodExitRequestImpl extends EventRequestImpl implements
+ MethodExitRequest {
/**
* Creates new MethodExitRequest.
*/
@@ -34,6 +33,7 @@ public class MethodExitRequestImpl extends EventRequestImpl implements MethodExi
/**
* @return Returns JDWP EventKind.
*/
+ @Override
protected final byte eventKind() {
if (virtualMachine().canGetMethodReturnValues()) {
return EventImpl.EVENT_METHOD_EXIT_WITH_RETURN_VALUE;

Back to the top