修改:区段进路解锁时不再对区段延续保护解锁

This commit is contained in:
joylink_zhangsai 2021-06-21 15:45:17 +08:00
parent d350f15260
commit 7558c10420
1 changed files with 2 additions and 2 deletions

View File

@ -594,12 +594,12 @@ public class Section extends MayOutOfOrderDevice {
//岔心解锁
if (this.parent != null && this.parent.isCross()) {
this.parent.setRouteLock(false);
this.parent.setOverlapLock(false);
// this.parent.setOverlapLock(false);
this.parent.setLockRight(false);
}
//自身解锁
this.routeLock = false;
this.overlapLock = false;
// this.overlapLock = false;
this.lockRight = false;
if (!CollectionUtils.isEmpty(this.logicList)) {
this.logicList.forEach(logic -> logic.routeUnlocking(right));