]> granicus.if.org Git - apache/commitdiff
remove a redundant piece of code
authorIan Holsman <ianh@apache.org>
Mon, 17 Jun 2002 01:59:32 +0000 (01:59 +0000)
committerIan Holsman <ianh@apache.org>
Mon, 17 Jun 2002 01:59:32 +0000 (01:59 +0000)
Submitted By: Wayne Pascoe <wayne@pengiunpowered.org.uk>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95720 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_example.c

index fa85e7da02c6b188820c54df46cff2992e674ff2..30796939d8d7db0e3bcae62fe62a8584c9c72a3f 100644 (file)
@@ -1309,32 +1309,6 @@ static const command_rec x_cmds[] =
     ),
     {NULL}
 };
-
-/*--------------------------------------------------------------------------*/
-/*                                                                          */
-/* Now the list of content handlers available from this module.             */
-/*                                                                          */
-/*--------------------------------------------------------------------------*/
-/* 
- * List of content handlers our module supplies.  Each handler is defined by
- * two parts: a name by which it can be referenced (such as by
- * {Add,Set}Handler), and the actual routine name.  The list is terminated by
- * a NULL block, since it can be of variable length.
- *
- * Note that content-handlers are invoked on a most-specific to least-specific
- * basis; that is, a handler that is declared for "text/plain" will be
- * invoked before one that was declared for "text / *".  Note also that
- * if a content-handler returns anything except DECLINED, no other
- * content-handlers will be called.
- */
-#if 0
-static const handler_rec x_handlers[] =
-{
-    {"example-handler", x_handler},
-    {NULL}
-};
-#endif
-
 /*--------------------------------------------------------------------------*/
 /*                                                                          */
 /* Finally, the list of callback routines and data structures that provide  */