private Feature()

in src/main/java/org/opensearch/geospatial/geojson/Feature.java [22:26]


    private Feature(Map<String, Object> geometry) {
        this.geometry = new HashMap<>();
        this.geometry.putAll(geometry);
        this.properties = new HashMap<>();
    }