From 643cf4267fef4a7f0b03ce0e377f57aad7007940 Mon Sep 17 00:00:00 2001 From: incastrix Date: Tue, 16 Sep 2008 18:19:25 +0000 Subject: [PATCH] Remove unused constructor. --- .../xdebug/php/model/XDebugAbstractValue.java | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java index 5056d77..3899a24 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugAbstractValue.java @@ -43,15 +43,7 @@ public abstract class XDebugAbstractValue extends XDebugElement implements IVal private boolean fhasChanged; - public XDebugAbstractValue(XDebugVariable variable, String typeName) { - super((XDebugTarget) variable.getDebugTarget()); - fVariable = variable; - setType(typeName); - fVariables= new IVariable[0]; - } - - - public XDebugAbstractValue(XDebugVariable variable,Node varNode,String typeName) { + public XDebugAbstractValue(XDebugVariable variable, Node varNode, String typeName) { super((XDebugTarget) variable.getDebugTarget()); fVariable = variable; if (varNode==null){ -- 1.7.1