Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2015-03-25 15:38:18 +0000
committerMarc Khouzam2015-03-25 15:39:17 +0000
commita04d64606e4602434365f5eb7516376de17a9a7e (patch)
tree6c019a2e58065a820e2ec8818b37bcf156626857 /dsf/org.eclipse.cdt.tests.dsf
parentef53a9fa4d4a80fface73033b32bc7357e2911d4 (diff)
downloadorg.eclipse.cdt-a04d64606e4602434365f5eb7516376de17a9a7e.tar.gz
org.eclipse.cdt-a04d64606e4602434365f5eb7516376de17a9a7e.tar.xz
org.eclipse.cdt-a04d64606e4602434365f5eb7516376de17a9a7e.zip
Remove unnecessary @SuppressWarnings
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf/org.eclipse.cdt.tests.dsf')
-rw-r--r--dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpointAttributeTranslator2.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpointAttributeTranslator2.java b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpointAttributeTranslator2.java
index b7f4379d999..6c5a093f890 100644
--- a/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpointAttributeTranslator2.java
+++ b/dsf/org.eclipse.cdt.tests.dsf/src/org/eclipse/cdt/tests/dsf/breakpoints/DsfTestBreakpointAttributeTranslator2.java
@@ -59,7 +59,6 @@ public class DsfTestBreakpointAttributeTranslator2 implements IBreakpointAttribu
public Map<String, Object> getAllBreakpointAttributes(IBreakpoint platformBP, boolean bpManagerEnabled)
throws CoreException
{
- @SuppressWarnings("unchecked")
Map<String, Object> platformBPAttr = platformBP.getMarker().getAttributes();
if (!bpManagerEnabled) {
platformBPAttr.put(IBreakpoint.ENABLED, Boolean.FALSE);

Back to the top