Remove copy paste
This commit is contained in:
parent
8f1ba86a14
commit
bec2fac47a
1 changed files with 2 additions and 4 deletions
|
@ -961,10 +961,8 @@ public class GeoPointParserUtil {
|
|||
if (vls.length == 2) {
|
||||
lat = parseSilentDouble(vls[0]);
|
||||
lon = parseSilentDouble(vls[1]);
|
||||
if (lat == 0 || lon == 0) {
|
||||
return new GeoParsedPoint(queryStr);
|
||||
}
|
||||
} else {
|
||||
}
|
||||
if (lat == 0 || lon == 0) {
|
||||
return new GeoParsedPoint(queryStr);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue