Dead code removal

This commit is contained in:
Shahram Najm 2024-01-19 12:29:21 +00:00
parent a96a5b12ad
commit 39571269c0
2 changed files with 17 additions and 22 deletions

View File

@ -1127,7 +1127,6 @@ int grib_set_double(grib_handle* h, const char* name, double val);
int grib_set_string_internal(grib_handle* h, const char* name, const char* val, size_t* length);
int grib_set_string(grib_handle* h, const char* name, const char* val, size_t* length);
int grib_set_string_array(grib_handle* h, const char* name, const char** val, size_t length);
int grib_set_bytes_internal(grib_handle* h, const char* name, const unsigned char* val, size_t* length);
int grib_set_bytes(grib_handle* h, const char* name, const unsigned char* val, size_t* length);
int grib_set_missing(grib_handle* h, const char* name);
int grib_is_missing_long(grib_accessor* a, long x);

View File

@ -513,27 +513,23 @@ int grib_set_string_array(grib_handle* h, const char* name, const char** val, si
return GRIB_NOT_FOUND;
}
int grib_set_bytes_internal(grib_handle* h, const char* name, const unsigned char* val, size_t* length)
{
int ret = GRIB_SUCCESS;
grib_accessor* a = NULL;
a = grib_find_accessor(h, name);
if (a) {
ret = grib_pack_bytes(a, val, length);
if (ret == GRIB_SUCCESS) {
return grib_dependency_notify_change(a);
}
grib_context_log(h->context, GRIB_LOG_ERROR, "Unable to set %s=%s as bytes (%s)",
name, val, grib_get_error_message(ret));
return ret;
}
grib_context_log(h->context, GRIB_LOG_ERROR, "Unable to find accessor %s", name);
return GRIB_NOT_FOUND;
}
// int grib_set_bytes_internal(grib_handle* h, const char* name, const unsigned char* val, size_t* length)
// {
// int ret = GRIB_SUCCESS;
// grib_accessor* a = NULL;
// a = grib_find_accessor(h, name);
// if (a) {
// ret = grib_pack_bytes(a, val, length);
// if (ret == GRIB_SUCCESS) {
// return grib_dependency_notify_change(a);
// }
// grib_context_log(h->context, GRIB_LOG_ERROR, "Unable to set %s=%s as bytes (%s)",
// name, val, grib_get_error_message(ret));
// return ret;
// }
// grib_context_log(h->context, GRIB_LOG_ERROR, "Unable to find accessor %s", name);
// return GRIB_NOT_FOUND;
// }
int grib_set_bytes(grib_handle* h, const char* name, const unsigned char* val, size_t* length)
{