From a5f1fb01b9ef867cf94158cdb42ffb1d46bae916 Mon Sep 17 00:00:00 2001 From: Dana Robinson <43805+derobins@users.noreply.github.com> Date: Thu, 29 Jun 2023 06:33:49 -0700 Subject: Remove some "Programmer" comments (#3209) These are meaningless noise. Removes the "Programmer" lines on comment start lines: /* Programmer: John Smith These complicate my sed script that will rip out the rest of the comments. --- src/H5B2stat.c | 4 +--- src/H5B2test.c | 3 +-- src/H5Dearray.c | 5 +---- src/H5Dfarray.c | 5 +---- src/H5Dnone.c | 17 ++++++++--------- src/H5Dselect.c | 4 +--- src/H5Dsingle.c | 15 ++++++--------- src/H5Dtest.c | 4 +--- src/H5EAtest.c | 4 +--- src/H5FDstdio.c | 5 ++--- src/H5Fdbg.c | 4 +--- src/H5Gstab.c | 5 ----- src/H5Gtest.c | 4 +--- src/H5HFstat.c | 4 +--- src/H5HFtest.c | 4 +--- src/H5HGdbg.c | 4 +--- src/H5HLdbg.c | 4 +--- src/H5Obtreek.c | 4 +--- src/H5Odrvinfo.c | 7 ++----- src/H5Oshmesg.c | 4 +--- src/H5Otest.c | 4 +--- src/H5P.c | 3 +-- src/H5Pencdec.c | 3 +-- src/H5Pint.c | 3 +-- src/H5Ptest.c | 4 +--- src/H5Sselect.c | 4 +--- src/H5Stest.c | 4 +--- test/accum.c | 3 --- test/btree2.c | 3 --- test/cache.c | 7 ++----- test/cache_api.c | 4 +--- test/cache_common.c | 4 +--- test/cache_common.h | 4 +--- test/cache_image.c | 4 +--- test/cache_tagging.c | 5 ++--- test/cork.c | 12 +++++------- test/earray.c | 3 --- test/efc.c | 4 ---- test/fheap.c | 3 --- test/genall5.c | 4 +--- test/genall5.h | 8 +++----- test/hyperslab.c | 14 ++++++-------- test/istore.c | 4 +--- test/ohdr.c | 3 --- testpar/t_cache_image.c | 9 ++++----- testpar/t_vfd.c | 5 ++--- 46 files changed, 70 insertions(+), 168 deletions(-) diff --git a/src/H5B2stat.c b/src/H5B2stat.c index 4b399ba..8942b28 100644 --- a/src/H5B2stat.c +++ b/src/H5B2stat.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Monday, March 6, 2006 - * +/* * Purpose: v2 B-tree metadata statistics functions. * */ diff --git a/src/H5B2test.c b/src/H5B2test.c index 751fd6a..73a7073 100644 --- a/src/H5B2test.c +++ b/src/H5B2test.c @@ -10,8 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * +/* * Purpose: v2 B-tree testing functions * */ diff --git a/src/H5Dearray.c b/src/H5Dearray.c index 87dc377..7403ee3 100644 --- a/src/H5Dearray.c +++ b/src/H5Dearray.c @@ -10,14 +10,11 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Tuesday, January 27, 2009 - * +/* * Purpose: Extensible array indexed (chunked) I/O functions. The chunks * are given a single-dimensional index which is used as the * offset in an extensible array that maps a chunk coordinate to * a disk address. - * */ /****************/ diff --git a/src/H5Dfarray.c b/src/H5Dfarray.c index 7caef2c..0f4074e 100644 --- a/src/H5Dfarray.c +++ b/src/H5Dfarray.c @@ -10,13 +10,10 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Vailin Choi - * Thursday, April 30, 2009 - * +/* * Purpose: Fixed array indexed (chunked) I/O functions. * The chunk coordinate is mapped as an index into an array of * disk addresses for the chunks. - * */ /****************/ diff --git a/src/H5Dnone.c b/src/H5Dnone.c index 2f54fb6..2994821 100644 --- a/src/H5Dnone.c +++ b/src/H5Dnone.c @@ -10,17 +10,16 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Vailin Choi - * September 2010 - * +/* * Purpose: Implicit (Non Index) chunked I/O functions. - * This is used when the dataset is: - * extendible but with fixed max. dims - * with early allocation - * without filter - * The chunk coordinate is mapped into the actual disk addresses - * for the chunk without indexing. * + * This is used when the dataset is: + * - extendible but with fixed max. dims + * - with early allocation + * - without filter + * + * The chunk coordinate is mapped into the actual disk addresses + * for the chunk without indexing. */ /****************/ diff --git a/src/H5Dselect.c b/src/H5Dselect.c index 79f4269..31c46d5 100644 --- a/src/H5Dselect.c +++ b/src/H5Dselect.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, September 30, 2004 - * +/* * Purpose: Dataspace I/O functions. */ diff --git a/src/H5Dsingle.c b/src/H5Dsingle.c index 0ee1834..57f1126 100644 --- a/src/H5Dsingle.c +++ b/src/H5Dsingle.c @@ -10,15 +10,12 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Vailin Choi - * May 2011; updated 10/2015 - * - * Purpose: Single Chunk I/O functions. - * This is used when the dataset has only 1 chunk (with or without filter): - * cur_dims[] is equal to max_dims[] is equal to the chunk dims[] - * non-filter chunk record: [address of the chunk] - * filtered chunk record: [address of the chunk, chunk size, filter mask] - * +/* + * Purpose: Single Chunk I/O functions. + * This is used when the dataset has only 1 chunk (with or without filter): + * cur_dims[] is equal to max_dims[] is equal to the chunk dims[] + * non-filter chunk record: [address of the chunk] + * filtered chunk record: [address of the chunk, chunk size, filter mask] */ /****************/ diff --git a/src/H5Dtest.c b/src/H5Dtest.c index d6e57c1..faeb03c 100644 --- a/src/H5Dtest.c +++ b/src/H5Dtest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, May 27, 2004 - * +/* * Purpose: Dataset testing functions. */ diff --git a/src/H5EAtest.c b/src/H5EAtest.c index 6167954..ac54a19 100644 --- a/src/H5EAtest.c +++ b/src/H5EAtest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, August 28, 2008 - * +/* * Purpose: Extensible array testing functions. * */ diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index 9883d68..2e4473e 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Robb Matzke - * Wednesday, October 22, 1997 - * +/* * Purpose: The C STDIO virtual file driver which only uses calls from stdio.h. * This also serves as an example of coding a simple file driver, * therefore, it should not use any non-public definitions. @@ -20,6 +18,7 @@ * NOTE: This driver is not as well tested as the standard SEC2 driver * and is not intended for production use! */ + #include #include #include diff --git a/src/H5Fdbg.c b/src/H5Fdbg.c index 2d22efa..28d2ce7 100644 --- a/src/H5Fdbg.c +++ b/src/H5Fdbg.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Wednesday, July 9, 2003 - * +/* * Purpose: File object debugging functions. */ diff --git a/src/H5Gstab.c b/src/H5Gstab.c index 9627340..00320e2 100644 --- a/src/H5Gstab.c +++ b/src/H5Gstab.c @@ -10,11 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Robb Matzke - * Friday, September 19, 1997 - * - */ - /****************/ /* Module Setup */ /****************/ diff --git a/src/H5Gtest.c b/src/H5Gtest.c index f8c59dc..34ec853 100644 --- a/src/H5Gtest.c +++ b/src/H5Gtest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Monday, October 17, 2005 - * +/* * Purpose: Group testing functions. */ diff --git a/src/H5HFstat.c b/src/H5HFstat.c index d76fce5..d9170f6 100644 --- a/src/H5HFstat.c +++ b/src/H5HFstat.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Monday, March 6, 2006 - * +/* * Purpose: Fractal heap metadata statistics functions. * */ diff --git a/src/H5HFtest.c b/src/H5HFtest.c index 35d16b2..11ea606 100644 --- a/src/H5HFtest.c +++ b/src/H5HFtest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, February 3, 2006 - * +/* * Purpose: Fractal heap testing functions. * */ diff --git a/src/H5HGdbg.c b/src/H5HGdbg.c index a5b6665..90fbddd 100644 --- a/src/H5HGdbg.c +++ b/src/H5HGdbg.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Wednesday, July 9, 2003 - * +/* * Purpose: Global Heap object debugging functions. */ diff --git a/src/H5HLdbg.c b/src/H5HLdbg.c index dcf228f..59dd181 100644 --- a/src/H5HLdbg.c +++ b/src/H5HLdbg.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Wednesday, July 9, 2003 - * +/* * Purpose: Local Heap object debugging functions. */ diff --git a/src/H5Obtreek.c b/src/H5Obtreek.c index 7b80de8..87f6291 100644 --- a/src/H5Obtreek.c +++ b/src/H5Obtreek.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, March 1, 2007 - * +/* * Purpose: A message holding non-default v1 B-tree 'K' value * information in the superblock extension. */ diff --git a/src/H5Odrvinfo.c b/src/H5Odrvinfo.c index 4c0ca93..9bf2a22 100644 --- a/src/H5Odrvinfo.c +++ b/src/H5Odrvinfo.c @@ -10,11 +10,8 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Thursday, March 1, 2007 - * - * Purpose: A message holding driver info settings - * in the superblock extension. +/* + * Purpose: A message holding driver info settings in the superblock extension */ #include "H5Omodule.h" /* This source code file is part of the H5O module */ diff --git a/src/H5Oshmesg.c b/src/H5Oshmesg.c index 5c9a199..52f3771 100644 --- a/src/H5Oshmesg.c +++ b/src/H5Oshmesg.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: James Laird - * Monday, January 29, 2007 - * +/* * Purpose: A message holding "implicitly shared object header message" * information in the superblock extension. */ diff --git a/src/H5Otest.c b/src/H5Otest.c index 41c8ed4..c870992 100644 --- a/src/H5Otest.c +++ b/src/H5Otest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Monday, December 4, 2006 - * +/* * Purpose: Object header testing functions. */ diff --git a/src/H5P.c b/src/H5P.c index 3aea232..427eb24 100644 --- a/src/H5P.c +++ b/src/H5P.c @@ -10,8 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * +/* * Purpose: Generic Property Functions */ diff --git a/src/H5Pencdec.c b/src/H5Pencdec.c index d75c52c..b963f21 100644 --- a/src/H5Pencdec.c +++ b/src/H5Pencdec.c @@ -10,8 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * +/* * Purpose: Generic Property Functions */ diff --git a/src/H5Pint.c b/src/H5Pint.c index 88f9550..fd47e27 100644 --- a/src/H5Pint.c +++ b/src/H5Pint.c @@ -10,8 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * +/* * Purpose: Generic Property Functions */ diff --git a/src/H5Ptest.c b/src/H5Ptest.c index 8470863..a77a2bf 100644 --- a/src/H5Ptest.c +++ b/src/H5Ptest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Saturday May 31, 2003 - * +/* * Purpose: Generic Property Testing Functions */ diff --git a/src/H5Sselect.c b/src/H5Sselect.c index ebe6e89..c956992 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Friday, May 29, 1998 - * +/* * Purpose: Dataspace selection functions. */ diff --git a/src/H5Stest.c b/src/H5Stest.c index 4bbbf87..3326410 100644 --- a/src/H5Stest.c +++ b/src/H5Stest.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Saturday, May 31, 2003 - * +/* * Purpose: Dataspace selection testing functions. */ diff --git a/test/accum.c b/test/accum.c index 9033380..5c0480a 100644 --- a/test/accum.c +++ b/test/accum.c @@ -10,9 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Mike McGreevy - * October 7, 2010 - */ #include "h5test.h" #define H5F_FRIEND /*suppress error about including H5Fpkg */ diff --git a/test/btree2.c b/test/btree2.c index 500d523..fdd7581 100644 --- a/test/btree2.c +++ b/test/btree2.c @@ -10,9 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Tuesday, February 1, 2005 - */ #include "h5test.h" /* diff --git a/test/cache.c b/test/cache.c index 418c8d5..b3b6e2a 100644 --- a/test/cache.c +++ b/test/cache.c @@ -10,11 +10,8 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 6/9/04 - * - * This file contains tests for the cache implemented in - * H5C.c +/* + * This file contains tests for the cache implemented in H5C.c */ #include "cache_common.h" #include "H5MFprivate.h" diff --git a/test/cache_api.c b/test/cache_api.c index d01f135..041458b 100644 --- a/test/cache_api.c +++ b/test/cache_api.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 11/10/05 - * +/* * This file contains tests for the API calls associated * with the cache implemented in H5C.c */ diff --git a/test/cache_common.c b/test/cache_common.c index 1d664ff..6ec5527 100644 --- a/test/cache_common.c +++ b/test/cache_common.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 10/27/05 - * +/* * This file contains common code for tests of the cache * implemented in H5C.c */ diff --git a/test/cache_common.h b/test/cache_common.h index f1bbf92..93d8e76 100644 --- a/test/cache_common.h +++ b/test/cache_common.h @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 10/27/05 - * +/* * This file contains common #defines, type definitions, and * externs for tests of the cache implemented in H5C.c */ diff --git a/test/cache_image.c b/test/cache_image.c index 5624080..1f5f163 100644 --- a/test/cache_image.c +++ b/test/cache_image.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 7/13/15 - * +/* * This file contains tests specific to the cache image * feature implemented in H5C.c */ diff --git a/test/cache_tagging.c b/test/cache_tagging.c index c11ef6f..fd40f8f 100644 --- a/test/cache_tagging.c +++ b/test/cache_tagging.c @@ -10,11 +10,10 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Mike McGreevy - * January 25, 2010 - * +/* * This file contains tests for metadata tagging. */ + #define H5F_FRIEND /*suppress error about including H5Fpkg */ #define H5F_TESTING #include "H5Fpkg.h" diff --git a/test/cork.c b/test/cork.c index 3187ee3..64519bd 100644 --- a/test/cork.c +++ b/test/cork.c @@ -10,13 +10,11 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Vailin Choi - * Feb 20, 2014 - * - * This file contains tests for: - * H5Odisable_mdc_flushes() - * H5Oenable_mdc_flushes() - * H5Oare_mdc_flushes_disabled() +/* + * This file contains tests for: + * * H5Odisable_mdc_flushes() + * * H5Oenable_mdc_flushes() + * * H5Oare_mdc_flushes_disabled() */ #include "h5test.h" diff --git a/test/earray.c b/test/earray.c index 0a9de79..ac889f9 100644 --- a/test/earray.c +++ b/test/earray.c @@ -10,9 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Tuesday, June 17, 2008 - */ #include "h5test.h" /* diff --git a/test/efc.c b/test/efc.c index 229359e..07a6807 100644 --- a/test/efc.c +++ b/test/efc.c @@ -10,10 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Neil Fortner - * December 16, 2010 - */ - #include "h5test.h" #define H5F_FRIEND /*suppress error about including H5Fpkg */ diff --git a/test/fheap.c b/test/fheap.c index 3ce2209..0af7b49 100644 --- a/test/fheap.c +++ b/test/fheap.c @@ -10,9 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Quincey Koziol - * Friday, February 24, 2006 - */ #include "h5test.h" /* diff --git a/test/genall5.c b/test/genall5.c index 81069f4..de8fe9b 100644 --- a/test/genall5.c +++ b/test/genall5.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 9/23/15 - * +/* * This file contains a heavily edited and functionally reduce * version of the test code first written by Quincey in a file * of the same name. diff --git a/test/genall5.h b/test/genall5.h index 5c1e572..bd365d7 100644 --- a/test/genall5.h +++ b/test/genall5.h @@ -10,11 +10,9 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 9/4/15 - * - * This file contains declarations of all functions defined - * in genall5.c +/* + * This file contains declarations of all functions defined + * in genall5.c */ void create_zoo(hid_t fid, const char *base_path, int proc_num); diff --git a/test/hyperslab.c b/test/hyperslab.c index 55735d4..47fb676 100644 --- a/test/hyperslab.c +++ b/test/hyperslab.c @@ -10,14 +10,12 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Robb Matzke - * Friday, October 10, 1997 - * - * Purpose: Hyperslab operations are rather complex, so this file - * attempts to test them extensively so we can be relatively - * sure they really work. We only test 1d, 2d, and 3d cases - * because testing general dimensionalities would require us to - * rewrite much of the hyperslab stuff. +/* + * Purpose: Hyperslab operations are rather complex, so this file + * attempts to test them extensively so we can be relatively + * sure they really work. We only test 1d, 2d, and 3d cases + * because testing general dimensionalities would require us to + * rewrite much of the hyperslab stuff. */ #include "h5test.h" #include "H5VMprivate.h" diff --git a/test/istore.c b/test/istore.c index 37e603b..f4b975f 100644 --- a/test/istore.c +++ b/test/istore.c @@ -10,9 +10,7 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Robb Matzke - * Wednesday, October 15, 1997 - * +/* * Purpose: Tests various aspects of indexed raw data storage. */ diff --git a/test/ohdr.c b/test/ohdr.c index d48189d..5fe498b 100644 --- a/test/ohdr.c +++ b/test/ohdr.c @@ -10,9 +10,6 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: Robb Matzke - * Tuesday, November 24, 1998 - */ #include "h5test.h" #include "H5CXprivate.h" /* API Contexts */ diff --git a/testpar/t_cache_image.c b/testpar/t_cache_image.c index 96b5b7a..123b73e 100644 --- a/testpar/t_cache_image.c +++ b/testpar/t_cache_image.c @@ -10,12 +10,11 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * 7/13/15 - * - * This file contains tests specific to the cache image - * feature implemented in H5C.c +/* + * This file contains tests specific to the cache image + * feature implemented in H5C.c */ + #include "testphdf5.h" #include "cache_common.h" diff --git a/testpar/t_vfd.c b/testpar/t_vfd.c index d4ca277..2d3a372 100644 --- a/testpar/t_vfd.c +++ b/testpar/t_vfd.c @@ -10,9 +10,8 @@ * help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Programmer: John Mainzer - * - * This file is a catchall for parallel VFD tests. +/* + * This file is a catchall for parallel VFD tests. */ #include "testphdf5.h" -- cgit v0.12