From 1ae33e7c6adfcba6b7f0306e2e2f9184096210ec Mon Sep 17 00:00:00 2001 From: Ted Williams Date: Tue, 14 Nov 2006 20:06:07 +0000 Subject: [PATCH] A.B var = (A.B) myObj; --- .../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 7458113910a..8114f091d38 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 @@ -76,7 +76,7 @@ abstract public class DMContextVMLayoutNode extends AbstractV public boolean equals(Object other) { if (!(other instanceof DMContextVMLayoutNode.DMContextVMContext)) return false; - DMContextVMLayoutNode.DMContextVMContext otherVmc = (DMContextVMLayoutNode.DMContextVMContext)other; + DMContextVMLayoutNode.DMContextVMContext otherVmc = (DMContextVMLayoutNode.DMContextVMContext)other; return DMContextVMLayoutNode.this.equals(otherVmc.getLayoutNode()) && fParent.equals(otherVmc.fParent) && fDmc.equals(otherVmc.fDmc);