From 43d24e8bec654b779bfd66d87064e46e8778acf4 Mon Sep 17 00:00:00 2001 From: Ted Williams Date: Tue, 14 Nov 2006 20:21:01 +0000 Subject: [PATCH] JAVAC DMContextVMLayoutNode.DMContextVMContext otherVmc = ... --- .../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..5a7a1247c40 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);