We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e35709b commit 0a827bbCopy full SHA for 0a827bb
1 file changed
Source/Applications/SystemCenter/Controllers/ExternalDB/LineSegmentWizardController.cs
@@ -656,7 +656,7 @@ private LineConfiguration GetFAWGConfiguration(Line line)
656
List<string> buses = segments.Select(s => s.FromBus).ToList();
657
buses.AddRange(segments.Select(s => s.ToBus));
658
659
- List<Segment> sectionEnds = segments.Where(s => buses.Where( b => b == s.ToBus).Count() != 2 || buses.Where(b => b != s.FromBus).Count() != 2).ToList();
+ List<Segment> sectionEnds = segments.Where(s => buses.Where( b => b == s.ToBus).Count() != 2 || buses.Where(b => b == s.FromBus).Count() != 2).ToList();
660
661
while (sectionEnds.Count > 0)
662
{
0 commit comments