remove unused constructor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugObjectValue.java
index a7fdfca..27c42d2 100644 (file)
@@ -3,15 +3,14 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugObjectValue extends XDebugAbstractValue {
-
        public XDebugObjectValue(XDebugVariable variable, Node varNode,
                        String typeName) {
                super(variable, varNode, typeName);
        }
 
        public void setType(String typeName) {
-               fType=XDebugAbstractValue.VALUETYPE_OBJECT;
-               fTypeName=typeName;
+               fType = XDebugAbstractValue.VALUETYPE_OBJECT;
+               fTypeName = typeName;
 
        }
 
@@ -19,17 +18,8 @@ public class XDebugObjectValue extends XDebugAbstractValue {
                fValueString = data;
 
        }
-       
-/*     public String toString() {
-               return "class " + fValueString;
-       }*/
-       /*public String toString() {
-               return null;
-       }*/
 
        public boolean verifyValue(String expression) {
-               // TODO Auto-generated method stub
                return false;
        }
-
-}
+}
\ No newline at end of file