Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-06-04 18:08:03 +0000
committereutarass2010-06-04 18:08:03 +0000
commit67df2c6efdf04eebb801e0ba176d083044017daf (patch)
treedac66151779f0e36135becaf0587b2335fe879eb /plugins/org.eclipse.tm.tcf.debug/src
parent8217215f8715949a124995632605640710f8a4e6 (diff)
downloadorg.eclipse.tcf-67df2c6efdf04eebb801e0ba176d083044017daf.tar.gz
org.eclipse.tcf-67df2c6efdf04eebb801e0ba176d083044017daf.tar.xz
org.eclipse.tcf-67df2c6efdf04eebb801e0ba176d083044017daf.zip
1. Added version=0.3.0 on Export-Package: org.eclipse.tm.tcf.extensions
2. Added "x-friends:=" directives in tm.tcf.debug/META-INF/MANIFEST.MF 3. Reverted version changes on tm.tcf.dsf - nothing has happened to them in the past year 4. Fixed: in plugin.properties, the providerName should be "Eclipse.org - DSDP" for consistency, and as required by the Development Process. 5. Fixed some compiler warnings
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.debug/src')
-rw-r--r--plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/tests/TestRCBP1.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/tests/TestRCBP1.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/tests/TestRCBP1.java
index 10b7fd7a4..ea6d0f89b 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/tests/TestRCBP1.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/tests/TestRCBP1.java
@@ -315,7 +315,7 @@ class TestRCBP1 implements ITCFTest, IRunControl.RunControlListener {
assert !bp_set_done;
Map<String,Object> m[] = new Map[7];
for (int i = 0; i < m.length; i++) {
- m[i] = new HashMap();
+ m[i] = new HashMap<String,Object>();
m[i].put(IBreakpoints.PROP_ID, "TcfTestBP" + i + "" + channel_id);
m[i].put(IBreakpoints.PROP_ENABLED, Boolean.TRUE);
switch (i) {

Back to the top