Skip to content

Commit

Permalink
Init feature without geometry instead Point(0,0)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Jun 10, 2024
1 parent f1c18e5 commit 9138620
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ public class ArcgisAggregatorDomain {

LOGGER.debug("[ArcgisAggregatorDomain] - constructor init.");
try {
feature = Feature.createPointFeature(0, 0);
feature = new Feature();
} catch (Throwable e) {
LOGGER.error(
"ArcgisAggregatorDomain - Unexpected error " + e.getClass().getName() + " - " + e.getMessage());
Expand Down

0 comments on commit 9138620

Please sign in to comment.