suppressed unchecked warning on cast

This commit is contained in:
Jeremy Long
2017-07-06 05:41:06 -04:00
parent fa4d8832d7
commit 87f327b095

View File

@@ -54,6 +54,7 @@ public final class CweDB {
*
* @return a HashMap of CWE data
*/
@SuppressWarnings("unchecked")
private static Map<String, String> loadData() {
final String filePath = "data/cwe.hashmap.serialized";
try (InputStream input = FileUtils.getResourceAsStream(filePath);