Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java')
-rw-r--r--org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java
index e9a6b7f7f..2793437d5 100644
--- a/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java
+++ b/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/CharTypeImpl.java
@@ -10,35 +10,35 @@
*******************************************************************************/
package org.eclipse.jdi.internal;
-
import com.sun.jdi.CharType;
import com.sun.jdi.Value;
/**
- * 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 CharTypeImpl extends PrimitiveTypeImpl implements CharType {
/**
* Creates new instance.
*/
public CharTypeImpl(VirtualMachineImpl vmImpl) {
- super("CharType", vmImpl, "char" , "C"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ super("CharType", vmImpl, "char", "C"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
-
+
/**
* @returns primitive type tag.
*/
+ @Override
public byte tag() {
return CharValueImpl.tag;
}
-
+
/**
* @return Create a null value instance of the type.
*/
+ @Override
public Value createNullValue() {
- return virtualMachineImpl().mirrorOf((char)0);
+ return virtualMachineImpl().mirrorOf((char) 0);
}
}

Back to the top