only check for conflicts, not changes. #89776

This commit is contained in:
Johannes Rieken 2020-01-31 12:44:19 +01:00
parent 92da5890d8
commit 5eeab37a1e

View file

@ -113,11 +113,11 @@ export class ConflictDetector {
list(): URI[] {
const result: URI[] = this._conflicts.keys();
this._changes.forEach((_value, key) => {
if (!this._conflicts.has(key)) {
result.push(key);
}
});
// this._changes.forEach((_value, key) => {
// if (!this._conflicts.has(key)) {
// result.push(key);
// }
// });
return result;
}
}