Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java
index 967bac39c..f1b667489 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/jdwp/JdwpMethodID.java
@@ -10,13 +10,12 @@
*******************************************************************************/
package org.eclipse.jdi.internal.jdwp;
-
import org.eclipse.jdi.internal.VirtualMachineImpl;
/**
* This class implements the corresponding Java Debug Wire Protocol (JDWP) ID
* declared by the JDWP specification.
- *
+ *
*/
public class JdwpMethodID extends JdwpID {
/**
@@ -25,10 +24,11 @@ public class JdwpMethodID extends JdwpID {
public JdwpMethodID(VirtualMachineImpl vmImpl) {
super(vmImpl);
}
-
+
/**
* @return Returns VM specific size of ID.
*/
+ @Override
public int getSize() {
return fVirtualMachine.methodIDSize();
}
@@ -36,7 +36,8 @@ public class JdwpMethodID extends JdwpID {
/**
* @return Returns true if ID is null.
*/
+ @Override
public boolean isNull() {
return false;
- }
+ }
}

Back to the top