Fixes bug on rda common standards fetching.

This commit is contained in:
gkolokythas 2019-11-14 18:26:57 +02:00
parent eec40792d0
commit 0a27835367
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class ProductionConfigLoader implements ConfigLoader {
BufferedReader reader; BufferedReader reader;
List<String> rdaList = new LinkedList<>(); List<String> rdaList = new LinkedList<>();
try { try {
reader = new BufferedReader(new FileReader(Paths.get(filePath).toUri().toURL().toString())); reader = new BufferedReader(new FileReader(filePath));
String line = reader.readLine(); String line = reader.readLine();
while (line != null) { while (line != null) {
rdaList.add(line); rdaList.add(line);