修改:区段进路解锁时不再对区段延续保护解锁
This commit is contained in:
parent
d350f15260
commit
7558c10420
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue