Remove unused function

This commit is contained in:
Vjacheslav Trushkin 2018-10-11 11:17:01 +03:00
parent 1bfa11bb7f
commit 15e0f9cc7f
1 changed files with 0 additions and 17 deletions

View File

@ -135,23 +135,6 @@ class Collections {
});
}
/**
* Merge two collections lists, overwriting this collections with data from other collections list
*
* @param {Collections} data
*/
merge(data) {
// Merge data
if (data.info !== void 0) {
this.info = data.info;
}
// Merge collections
Object.keys(data.items).forEach(prefix => {
this.items[prefix] = data.items[prefix];
});
}
/**
* Load queue
*