Index: subversion/libsvn_subr/io.c
===================================================================
--- subversion/libsvn_subr/io.c	(revision 24727)
+++ subversion/libsvn_subr/io.c	(working copy)
@@ -1793,18 +1793,15 @@
 
               SVN_ERR(svn_path_cstring_to_utf8(&entry_utf8, this_entry.name,
                                                subpool));
-          
+
               fullpath = svn_path_join(path, entry_utf8, subpool);
 
               if (this_entry.filetype == APR_DIR)
                 {
                   SVN_ERR(svn_io_remove_dir2(fullpath, FALSE, subpool));
                 }
-              else if (this_entry.filetype == APR_REG)
+              else
                 {
-                  /* ### Do we really need the check for APR_REG here?
-                     Shouldn't we remove symlinks, pipes and whatnot, too?
-                     --xbc */
                   svn_error_t *err = svn_io_remove_file(fullpath, subpool);
                   if (err)
                     return svn_error_createf
