Changeset 6721


Ignore:
Timestamp:
10/30/15 18:40:50 (9 years ago)
Author:
davor.ostojic@oeaw.ac.at
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.3-oeaw/vlo-importer/src/main/java/eu/clarin/cmdi/vlo/importer/PostProcessorsWithVocabularyMap.java

    r6719 r6721  
    11package eu.clarin.cmdi.vlo.importer;
    22
     3import java.io.File;
     4import java.io.FileInputStream;
    35import java.io.InputStream;
    46import java.util.List;
     
    8486                    // load records from file
    8587                        // in the future this should be loaded from CLAVAS directly and the file only used as fallback
     88                       
     89                        //InputStream is = PostProcessorsWithVocabularyMap.class.getClassLoader().getResourceAsStream(mapUrl);
     90                        InputStream is = new FileInputStream(new File(mapUrl));
    8691
    87                         InputStream is = PostProcessorsWithVocabularyMap.class.getClassLoader().getResourceAsStream(mapUrl);
    8892                       
    8993                        return VariantsMapMarshaller.unmarshal(is);                     
Note: See TracChangeset for help on using the changeset viewer.