Switch to unified view

a/src/net/timbusproject/extractors/provenance/ProvenanceAccessClient.java b/src/net/timbusproject/extractors/provenance/ProvenanceAccessClient.java
...
...
370
370
371
        CSVReader reader = null;
371
        CSVReader reader = null;
372
        try {
372
        try {
373
            reader = new CSVReader(new InputStreamReader(new FileInputStream(CSVReport.getAbsolutePath()), "UTF-8"),
373
            reader = new CSVReader(new InputStreamReader(new FileInputStream(CSVReport.getAbsolutePath()), "UTF-8"),
374
                    ',', '\'', 1);
374
                    ',', '\'', 1);
375
        } catch (UnsupportedEncodingException | FileNotFoundException e) {
375
        } catch (UnsupportedEncodingException e){
376
            LOGGER.error("ERROR: File not found " + e.getMessage());
377
            return Collections.EMPTY_LIST;
378
        }
379
        catch (FileNotFoundException e){
376
            LOGGER.error("ERROR: File not found " + e.getMessage());
380
            LOGGER.error("ERROR: File not found " + e.getMessage());
377
            return Collections.EMPTY_LIST;
381
            return Collections.EMPTY_LIST;
378
        }
382
        }
379
        try {
383
        try {
380
384