This is just some static backup of the original site, don't expect every link to work!

Changeset e67090


Ignore:
Timestamp:
Sep 9, 2018, 2:11:50 PM (4 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
9168c4
Parents:
3f9e46
Message:

make robust against missing import file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/vI_rdfDatasource.js

    r3f9e46 re67090  
    11761176
    11771177  _importFile: function (file) {
     1178    if (!file.exists() || !file.isFile() || !file.isReadable()) {
     1179      Log.debug("rdfDatasourceImporter _importFile: " + file.path + " not found / not readable");
     1180      return;
     1181    }
     1182
    11781183    Log.debug("import: preparation:");
    11791184
Note: See TracChangeset for help on using the changeset viewer.