[添加默认参数]
This commit is contained in:
yangyakun
2024-09-02 17:38:57 +08:00
parent 6a7515fcdf
commit 0deac4c52e

View File

@@ -7,6 +7,7 @@ import static com.mogo.och.bus.constant.BusConst.STATION_STATUS_STOPPED;
import android.content.Context;
import android.text.TextUtils;
import android.util.ArrayMap;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
@@ -956,7 +957,7 @@ public class OrderModel {
currentTaskId = result.getTaskId();
currentLineId = result.getLineId();
String lineName = result.getName();
LineManager.setLineInfo(new LineInfo(currentLineId,lineName));
LineManager.setLineInfo(new LineInfo(currentLineId,lineName,new ArrayMap<>()));
stationList.clear();
stationList.addAll(site);