diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-25 19:52:10 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-25 19:52:10 (GMT) |
commit | 33189bd39be337df900a5dbd65190b111a959f31 (patch) | |
tree | 27f6de45d7232c4fabdd6c2285aeb98a29c5e424 /src/H5.c | |
parent | b3afaccfe51320c3cb38a2338d17ba8f79c15073 (diff) | |
download | hdf5-33189bd39be337df900a5dbd65190b111a959f31.zip hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.gz hdf5-33189bd39be337df900a5dbd65190b111a959f31.tar.bz2 |
[svn-r4573]
Purpose:
Switch mount property list to the new generic property list.
Platforms tested:
IRIX64 6.5, SunOS 5.7, FreeBSD.
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1970,18 +1970,6 @@ H5_trace (hbool_t returning, const char *func, const char *type, ...) case H5I_TEMPLATE_5: case H5I_TEMPLATE_6: case H5I_TEMPLATE_7: - /* These will eventually go away when the old-style */ - /* property lists are converted to generic property */ - /* lists -QAK */ - switch (H5P_get_class(id_type)) { - case H5P_MOUNT_OLD: - fprintf(out, "H5P_MOUNT"); - break; - default: - fprintf (out, "H5I_TEMPLATE_%d", - (int)(id_type-H5I_TEMPLATE_0)); - break; - } break; case H5I_GROUP: fprintf (out, "H5I_GROUP"); @@ -2134,9 +2122,6 @@ H5_trace (hbool_t returning, const char *func, const char *type, ...) case H5P_NO_CLASS_OLD: fprintf (out, "H5P_NO_CLASS"); break; - case H5P_MOUNT_OLD: - fprintf (out, "H5P_MOUNT"); - break; default: fprintf (out, "%ld", (long)plist_class); break; |