From: Paul Ramsey Date: Thu, 16 Feb 2012 00:28:04 +0000 (+0000) Subject: Remove now-obsolete TODO comment X-Git-Tag: 2.0.0alpha6~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97e9357796fd86f86eefc6e7ec3365118b02c84b;p=postgis Remove now-obsolete TODO comment git-svn-id: http://svn.osgeo.org/postgis/trunk@9215 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/libpgcommon/lwgeom_transform.c b/libpgcommon/lwgeom_transform.c index 91fdf7e51..09313ac35 100644 --- a/libpgcommon/lwgeom_transform.c +++ b/libpgcommon/lwgeom_transform.c @@ -722,7 +722,6 @@ spheroid_init_from_srid(FunctionCallInfo fcinfo, int srid, SPHEROID *s) #if POSTGIS_PROJ_VERSION >= 48 /* For newer versions of Proj we can pull the spheroid paramaeters and initialize */ /* using them */ - /* TODO actually implement this using the API function when it exists */ pj_get_spheroid_defn(pj1, &major_axis, &eccentricity_squared); minor_axis = major_axis * sqrt(1-eccentricity_squared); spheroid_init(s, major_axis, minor_axis);