Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2014-02-25 08:28:56 +0000
committerAnton Leherbauer2014-02-25 08:28:56 +0000
commit52b89e22a908d2e053681d15433bfe16066fa2da (patch)
tree6a41715159c1967efad5fe5a0c7ca407552f5963
parent4a2cf1835920346923d37711463e5ddbbc124a85 (diff)
downloadorg.eclipse.tcf-1.2.tar.gz
org.eclipse.tcf-1.2.tar.xz
org.eclipse.tcf-1.2.zip
TCF Debugger: Bug 428972 - Typo in TCFBreakpointActionsTCF_1_21.2
Change-Id: I86fbac31a44f0faeeccc42f594fff8c0d76c7be4 Signed-off-by: Anton Leherbauer <anton.leherbauer@windriver.com>
-rw-r--r--plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointActions.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointActions.java b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointActions.java
index 8a5a8e3bd..9e847c13b 100644
--- a/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointActions.java
+++ b/plugins/org.eclipse.tcf.cdt.ui/src/org/eclipse/tcf/internal/cdt/ui/TCFBreakpointActions.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011, 2013 Wind River Systems, Inc. and others.
+ * Copyright (c) 2011, 2014 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -138,7 +138,7 @@ public class TCFBreakpointActions {
if (a == BreakpointActionAdapter.this) continue;
TCFDataCache<IRunControl.RunControlContext> a_ctx_cache = a.node.getRunContext();
if (!a_ctx_cache.validate(this)) return;
- IRunControl.RunControlContext a_ctx_data = ctx_cache.getData();
+ IRunControl.RunControlContext a_ctx_data = a_ctx_cache.getData();
if (a_ctx_data == null) continue;
if (rc_grp.equals(a_ctx_data.getRCGroup())) l.add(a);
}

Back to the top