Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java')
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java b/org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java
index 6dc5d1abc25..e6a54921d2c 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/templates/TemplateContext.java
@@ -29,7 +29,7 @@ public abstract class TemplateContext {
/** The context type of this context */
private final TemplateContextType fContextType;
/** Additional variables. */
- private final Map fVariables= new HashMap();
+ private final Map<String, String> fVariables= new HashMap<>();
/** A flag to indicate that the context should not be modified. */
private boolean fReadOnly;
@@ -87,7 +87,7 @@ public abstract class TemplateContext {
* @return returns the value of the variable, <code>null</code> if the variable was not defined
*/
public String getVariable(String name) {
- return (String) fVariables.get(name);
+ return fVariables.get(name);
}
/**

Back to the top