Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-11-01 21:23:35 +0000
committerPawel Piech2012-11-01 21:46:25 +0000
commit7ad420e29d2f28d377ef89caf68f88bfa4dbf490 (patch)
tree99c27c507b596bfa0fca3ba2a53ad431fea4daa2
parent1c84b6c9a3bcf2b640277dc3fc29f04a47df8bfa (diff)
downloadeclipse.platform.debug-7ad420e29d2f28d377ef89caf68f88bfa4dbf490.tar.gz
eclipse.platform.debug-7ad420e29d2f28d377ef89caf68f88bfa4dbf490.tar.xz
eclipse.platform.debug-7ad420e29d2f28d377ef89caf68f88bfa4dbf490.zip
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenCountUpdate.java2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/HasChildrenUpdate.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenCountUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenCountUpdate.java
index 8d89714e7..eace53efe 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenCountUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenCountUpdate.java
@@ -233,7 +233,7 @@ class ChildrenCountUpdate extends ViewerUpdateMonitor implements IChildrenCountU
return
update instanceof ChildrenCountUpdate &&
getViewerInput().equals(update.getViewerInput()) &&
- getElementPath().equals(getElementPath());
+ getElementPath().equals(update.getElementPath());
}
protected int doHashCode() {
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
index 6397a2bdc..0020eaf7d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ChildrenUpdate.java
@@ -224,7 +224,7 @@ public class ChildrenUpdate extends ViewerUpdateMonitor implements IChildrenUpda
((ChildrenUpdate)update).getOffset() == getOffset() &&
((ChildrenUpdate)update).getLength() == getLength() &&
getViewerInput().equals(update.getViewerInput()) &&
- getElementPath().equals(getElementPath());
+ getElementPath().equals(update.getElementPath());
}
protected int doHashCode() {
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/HasChildrenUpdate.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/HasChildrenUpdate.java
index e4a22c50f..942b0b82b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/HasChildrenUpdate.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/HasChildrenUpdate.java
@@ -151,7 +151,7 @@ class HasChildrenUpdate extends ViewerUpdateMonitor implements IHasChildrenUpdat
return
update instanceof HasChildrenUpdate &&
getViewerInput().equals(update.getViewerInput()) &&
- getElementPath().equals(getElementPath());
+ getElementPath().equals(update.getElementPath());
}
protected int doHashCode() {

Back to the top