Revert "EFA: Don't try to convert coordinate result to address."

This reverts commit ca4c81ac4a.
This commit is contained in:
Andreas Schildbach 2018-12-03 00:43:39 +01:00
parent d48b1e10aa
commit 418b598f37

View file

@ -810,9 +810,9 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
place = locality != null ? locality : defaultPlace;
name = buildingName != null ? buildingName : streetName;
} else if ("coord".equals(type)) {
locationType = LocationType.COORD;
place = null;
name = null;
locationType = LocationType.ADDRESS;
place = defaultPlace;
name = nameElem;
} else {
throw new IllegalArgumentException("unknown type/anyType: " + type);
}