#
luxiaotao1123
2024-11-04 6f5c384b7f838f35e3da4db129a57c76cd54d508
zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/LaneService.java
@@ -45,13 +45,13 @@
        return this.initialized;
    }
    public List<String> getLanePoints(String codeData) {
    public Lane search(String codeData) {
        if (Cools.isEmpty(codeData) || !this.initialized) {
            return null;
        }
        for (Lane lane : this.lanes) {
            if (lane.getCodes().contains(codeData)) {
                return lane.getCodes();
                return lane;
            }
        }
        return null;
@@ -68,7 +68,7 @@
        this.mergeDeadEndLane();
        this.deadInteractionPoint();
        this.deleteInteractionPoint();
        this.filterLanesWithFewPoints();
@@ -262,7 +262,7 @@
        }
    }
    private void deadInteractionPoint() {
    private void deleteInteractionPoint() {
        for (Lane lane : this.lanes) {
            lane.removeInteraction(this.adjacencyCodeMap);
        }