Changeset cadf2f
- Timestamp:
- Sep 10, 2018, 1:43:18 PM (2 years ago)
- Branches:
- ng_0.9
- Children:
- fe166c
- Parents:
- 994fa9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/vI_rdfDatasource.js
r994fa9 rcadf2f 46 46 function initWithFilePath_tryDelimiters(_nsIFile, path, filename) { 47 47 try { 48 Log.debug("Filename try linux delimiter: '" + path + "/" + filename + "'");48 // Log.debug("Filename try linux delimiter: '" + path + "/" + filename + "'"); 49 49 _nsIFile.initWithPath(path + "/" + filename); 50 50 } catch (NS_ERROR_FILE_UNRECOGNIZED_PATH) { 51 51 try { 52 Log.debug("Filename try windows delimiter: '" + path + "\\" + filename + "'");52 // Log.debug("Filename try windows delimiter: '" + path + "\\" + filename + "'"); 53 53 _nsIFile.initWithPath(path + "\\" + filename); 54 54 } catch (NS_ERROR_FILE_UNRECOGNIZED_PATH) { … … 74 74 if (!this._dontRegisterObserver) this.AccountManagerObserver.register(this); 75 75 this._extVersion = get3PaneWindow().virtualIdentityExtension.extensionVersion; 76 Log.debug("rdfDatasource: read ext. Version '" + this._extVersion + "'");76 // Log.debug("rdfDatasource: read ext. Version '" + this._extVersion + "'"); 77 77 } 78 78
Note: See TracChangeset
for help on using the changeset viewer.