Skip to content

Commit b4c18f1

Browse files
committed
Fix an unchecked warning in BaseWriter.java
1 parent abca811 commit b4c18f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java_generate/ReferenceGenerator/src/writers/BaseWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ protected static String getXMLDescription(Document doc)
411411

412412
protected static HashMap<String, String> getDefaultDescriptionVars ()
413413
{
414-
HashMap<String,String> vars = new HashMap();
414+
HashMap<String, String> vars = new HashMap<String, String>();
415415
vars.put("description title", "Description");
416416
vars.put("description text", "");
417417
return vars;

0 commit comments

Comments
 (0)