fix for new PHPValue and PHPVariable class
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.ui / src / net / sourceforge / phpdt / internal / debug / ui / PHPDebugModelPresentation.java
index bce950a..c7ff6ee 100644 (file)
@@ -105,12 +105,13 @@ public class PHPDebugModelPresentation extends LabelProvider implements IDebugMo
        }
 
        private Image getVariableImage(PHPVariable phpVar) {
-               if (phpVar != null) {
+/*             if (phpVar != null) {
                        if (phpVar.isLocal())
                                return DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_VARIABLE);
                        if (phpVar.isHashValue())
                                return DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_VARIABLE);
                }
+       */
                return DebugUITools.getImage(IDebugUIConstants.IMG_OBJS_VARIABLE);
        }