Skip to content
Snippets Groups Projects
Commit 110ff4c5 authored by brinn's avatar brinn
Browse files

minor: fix compiler warning

SVN: 22533
parent ae336143
No related branches found
No related tags found
No related merge requests found
......@@ -300,7 +300,7 @@ class DatasetMappingUtil
FileNotFoundException
{
FileInputStream stream = new FileInputStream(mappingFile);
List lines = IOUtils.readLines(stream);
List<String> lines = IOUtils.readLines(stream);
IOUtils.closeQuietly(stream);
return lines;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment