Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java
index 12b52d174..c069c204c 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfigurationInfo.java
@@ -123,7 +123,7 @@ public class LaunchConfigurationInfo {
* Constructs a new empty info
*/
protected LaunchConfigurationInfo() {
- setAttributeTable(new TreeMap<String, Object>());
+ setAttributeTable(new TreeMap<>());
}
/**
@@ -152,10 +152,10 @@ public class LaunchConfigurationInfo {
*/
protected void setAttributes(Map<String, ?> map) {
if (map == null) {
- setAttributeTable(new TreeMap<String, Object>());
+ setAttributeTable(new TreeMap<>());
return;
}
- setAttributeTable(new TreeMap<String, Object>(map));
+ setAttributeTable(new TreeMap<>(map));
}
/**

Back to the top