From 89faa64af29bd6b8b4ded002b012c59251d32d54 Mon Sep 17 00:00:00 2001 From: zhongchao Date: Mon, 28 Aug 2023 17:37:16 +0800 Subject: [PATCH] [6.0.0] fix json --- .../eagle/core/data/map/entity/MarkerExploreWay.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/map/entity/MarkerExploreWay.java b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/map/entity/MarkerExploreWay.java index 12287a8b76..f94abff990 100644 --- a/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/map/entity/MarkerExploreWay.java +++ b/core/mogo-core-data/src/main/java/com/mogo/eagle/core/data/map/entity/MarkerExploreWay.java @@ -145,16 +145,6 @@ public class MarkerExploreWay implements Serializable { return infoId; } - - public int getInfoIdInt() { - try { - return Integer.parseInt(infoId); - } catch (NumberFormatException e) { - e.printStackTrace(); - return -1; - } - } - public void setInfoId(String infoId) { this.infoId = infoId; }