From db88b4e1cad349560dde6a3a5d488345ee10990a Mon Sep 17 00:00:00 2001 From: Ted Williams Date: Tue, 14 Nov 2006 20:27:30 +0000 Subject: [PATCH] JAVAC if (!(other instanceof DMContextVMLayoutNode.DMContextVMContext)) return false; --- .../org/eclipse/dd/dsf/ui/viewmodel/DMContextVMLayoutNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/DMContextVMLayoutNode.java b/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/DMContextVMLayoutNode.java index 5a7a1247c40..eefeebaa56f 100644 --- a/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/DMContextVMLayoutNode.java +++ b/plugins/org.eclipse.dd.dsf.ui/src/org/eclipse/dd/dsf/ui/viewmodel/DMContextVMLayoutNode.java @@ -75,7 +75,7 @@ abstract public class DMContextVMLayoutNode extends AbstractV } public boolean equals(Object other) { - if (!(other instanceof DMContextVMLayoutNode.DMContextVMContext)) return false; + if (!(other instanceof DMContextVMLayoutNode.DMContextVMContext)) return false; DMContextVMLayoutNode.DMContextVMContext otherVmc = (DMContextVMLayoutNode.DMContextVMContext)other; return DMContextVMLayoutNode.this.equals(otherVmc.getLayoutNode()) && fParent.equals(otherVmc.fParent) &&