Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java')
-rw-r--r--core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java
index c46e6f6d7ef..aed2d2650cd 100644
--- a/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java
+++ b/core/org.eclipse.cdt.core/templateengine/org/eclipse/cdt/core/templateengine/SharedDefaults.java
@@ -93,9 +93,9 @@ public class SharedDefaults extends HashMap<String, String> {
*/
public SharedDefaults() {
- sharedDefaultsMap = new HashMap<String, String>();
- persistDataMap = new HashMap<String, String>();
- tableDataMap = new HashMap<String, String>();
+ sharedDefaultsMap = new HashMap<>();
+ persistDataMap = new HashMap<>();
+ tableDataMap = new HashMap<>();
// The conditional controls here is provided to have consistent
// data storage in the file during System crash or

Back to the top