()
| 1055 | } |
| 1056 | |
| 1057 | #cleanBindConflicts() { |
| 1058 | for ( const collectKey in this.#bindConflict ) { |
| 1059 | for ( const modName in this.#bindConflict[collectKey] ) { |
| 1060 | if ( Object.keys(this.#bindConflict[collectKey][modName]).length === 0 ) { |
| 1061 | delete this.#bindConflict[collectKey][modName] |
| 1062 | } |
| 1063 | } |
| 1064 | } |
| 1065 | } |
| 1066 | |
| 1067 | async getAndUpdateDetail(fullID) { |
| 1068 | return Promise.all(this.#scanPromise).then(() => { |
no test coverage detected