Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java15
1 files changed, 7 insertions, 8 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java
index 8f2f7abd0..f273097ed 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/WatchpointRequestImpl.java
@@ -10,30 +10,29 @@
*******************************************************************************/
package org.eclipse.jdi.internal.request;
-
import org.eclipse.jdi.internal.VirtualMachineImpl;
import com.sun.jdi.Field;
import com.sun.jdi.request.WatchpointRequest;
/**
- * 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 abstract class WatchpointRequestImpl extends EventRequestImpl implements WatchpointRequest {
+public abstract class WatchpointRequestImpl extends EventRequestImpl implements
+ WatchpointRequest {
/**
* Creates new WatchpointRequest, only used by subclasses.
*/
public WatchpointRequestImpl(String description, VirtualMachineImpl vmImpl) {
super(description, vmImpl);
}
-
+
/**
* @return Returns field for which Watchpoint requests is issued.
*/
public Field field() {
- return (Field)fFieldFilters.get(0);
+ return fFieldFilters.get(0);
}
}

Back to the top