Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java
index 03b7116b9d6..d4a154fa0fc 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java
+++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/disassembly/presentation/SourceTagDamagerRepairer.java
@@ -45,11 +45,11 @@ import org.eclipse.swt.graphics.RGB;
public class SourceTagDamagerRepairer extends DefaultDamagerRepairer implements ISourceTagListener {
private ISourceTagProvider fSourceTagProvider;
- private Map<String, ITokenScanner> fScannerMap = new HashMap<String, ITokenScanner>();
- private List<ISourceTag> fSourceTags = new ArrayList<ISourceTag>();
+ private Map<String, ITokenScanner> fScannerMap = new HashMap<>();
+ private List<ISourceTag> fSourceTags = new ArrayList<>();
private IColorManager fColorManager;
private IPreferenceStore fPreferenceStore;
- private Map<String, TextAttribute> fAttributeMap = new HashMap<String, TextAttribute>();
+ private Map<String, TextAttribute> fAttributeMap = new HashMap<>();
private final static String[] KEYS = { SemanticHighlightings.CLASS, SemanticHighlightings.METHOD_DECLARATION,
SemanticHighlightings.FUNCTION_DECLARATION, SemanticHighlightings.FIELD,

Back to the top