org.chromium.debug.core/src/org/chromium/debug/core/model/Variable.java
changeset 52 f577ea64429e
parent 2 e4420d2515f1
--- a/org.chromium.debug.core/src/org/chromium/debug/core/model/Variable.java	Wed Jan 27 10:42:14 2010 -0800
+++ b/org.chromium.debug.core/src/org/chromium/debug/core/model/Variable.java	Wed Jan 27 15:45:27 2010 -0800
@@ -26,13 +26,13 @@
    */
   private final boolean isInternalProperty;
 
-  public Variable(IChromiumDebugTarget debugTarget, JsVariable variable, boolean isInternalProperty) {
+  public Variable(DebugTargetImpl debugTarget, JsVariable variable, boolean isInternalProperty) {
     super(debugTarget);
     this.variable = variable;
     this.isInternalProperty = isInternalProperty;
   }
 
-  public String getName() throws DebugException {
+  public String getName() {
     return variable.getName();
   }