summaryrefslogtreecommitdiff
path: root/gnu/classpath/jdwp/value/ObjectValue.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/classpath/jdwp/value/ObjectValue.java')
-rw-r--r--gnu/classpath/jdwp/value/ObjectValue.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/classpath/jdwp/value/ObjectValue.java b/gnu/classpath/jdwp/value/ObjectValue.java
index b5cdb1f9e..d7dc7dae9 100644
--- a/gnu/classpath/jdwp/value/ObjectValue.java
+++ b/gnu/classpath/jdwp/value/ObjectValue.java
@@ -46,7 +46,7 @@ import java.io.IOException;
/**
* Wrapper for an Object value.
- *
+ *
* @author Kyle Galloway <kgallowa@redhat.com>
*/
public final class ObjectValue
@@ -57,7 +57,7 @@ public final class ObjectValue
/**
* Create a new ObjectValue from an Object
- *
+ *
* @param value the Object to wrap
*/
public ObjectValue(Object value)
@@ -65,10 +65,10 @@ public final class ObjectValue
super(JdwpConstants.Tag.OBJECT);
_value = value;
}
-
+
/**
* Get the value held in this Value
- *
+ *
* @return the value represented by this Value object
*/
public Object getValue()
@@ -78,7 +78,7 @@ public final class ObjectValue
/**
* Return an object representing this type
- *
+ *
* @return an Object represntation of this value
*/
@Override
@@ -89,7 +89,7 @@ public final class ObjectValue
/**
* Write the wrapped object to the given DataOutputStream.
- *
+ *
* @param os the output stream to write to
*/
@Override