typo fix
This commit is contained in:
parent
a77e89bd20
commit
63483c6722
1 changed files with 1 additions and 6 deletions
|
@ -978,7 +978,7 @@ public class RoutingHelper {
|
|||
if (rs != null) {
|
||||
streetName.text = getRouteSegmentStreetName(rs, false);
|
||||
if (Algorithms.isEmpty(streetName.text)) {
|
||||
isSet = Algorithms.isEmpty(getRouteSegmentStreetName(rs, true));
|
||||
isSet = !Algorithms.isEmpty(getRouteSegmentStreetName(rs, true));
|
||||
} else {
|
||||
isSet = true;
|
||||
}
|
||||
|
@ -991,11 +991,6 @@ public class RoutingHelper {
|
|||
RouteSegmentResult rs = getNextStreetSegmentResult();
|
||||
if (rs != null) {
|
||||
streetName.text = getRouteSegmentStreetName(rs, false);
|
||||
if (Algorithms.isEmpty(streetName.text)) {
|
||||
isSet = Algorithms.isEmpty(getRouteSegmentStreetName(rs, true));
|
||||
} else {
|
||||
isSet = true;
|
||||
}
|
||||
streetName.turnType = TurnType.valueOf(TurnType.C, false);
|
||||
streetName.shieldObject = rs.getObject();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue