aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2015-05-30 00:41:55 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2015-05-30 21:12:51 -0400
commitd50387fdf95a5e7fc22d516c3f6b8bb593239d89 (patch)
tree525bfffa513e9f0b71736939d29b9cb1a8b2e01f
parent4658f892823f367920b4a636496fe8537331b834 (diff)
downloadPROJ-d50387fdf95a5e7fc22d516c3f6b8bb593239d89.tar.gz
PROJ-d50387fdf95a5e7fc22d516c3f6b8bb593239d89.zip
Remove unused function.
-rw-r--r--src/pj_gc_reader.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/pj_gc_reader.c b/src/pj_gc_reader.c
index 8707975c..6e3c1a54 100644
--- a/src/pj_gc_reader.c
+++ b/src/pj_gc_reader.c
@@ -34,7 +34,6 @@
#include <ctype.h>
static int pj_gc_readentry(projCtx ctx, PAFile fid, PJ_GridCatalogEntry *entry);
-static void pj_gc_sortcatalog( projCtx ctx, PJ_GridCatalog *catalog );
/************************************************************************/
/* pj_gc_readcatalog() */
@@ -82,24 +81,10 @@ PJ_GridCatalog *pj_gc_readcatalog( projCtx ctx, const char *catalog_name )
}
}
- pj_gc_sortcatalog( ctx, catalog );
-
return catalog;
}
/************************************************************************/
-/* pj_gc_sortcatalog() */
-/* */
-/* Sort all the entries in ascending date and within a date in */
-/* descending priority order. */
-/************************************************************************/
-
-static void pj_gc_sortcatalog( projCtx ctx, PJ_GridCatalog *catalog )
-
-{
-}
-
-/************************************************************************/
/* pj_gc_read_csv_line() */
/* */
/* Simple csv line splitter with fixed maximum line size and */