You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/06/20 22:28:23 UTC

svn commit: r956409 - /subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h

Author: danielsh
Date: Sun Jun 20 20:28:23 2010
New Revision: 956409

URL: http://svn.apache.org/viewvc?rev=956409&view=rev
Log:
Remove an unused declaration.

* subversion/libsvn_ra_serf/ra_serf.h
  (svn_ra_serf__set_rev_prop):  Remove declaration, leave as an alias though.
  (svn_ra_serf__set_ver_prop):  Use doc string of __set_rev_prop().

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h

Modified: subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h?rev=956409&r1=956408&r2=956409&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h Sun Jun 20 20:28:23 2010
@@ -943,12 +943,16 @@ svn_ra_serf__retrieve_props(apr_hash_t *
                             const svn_ra_serf__dav_props_t *props,
                             apr_pool_t *pool);
 
-/* ### TODO: doco. */
+/* Set PROPS for PATH at REV revision with a NS:NAME VAL.
+ *
+ * The POOL governs allocation.
+ */
 void
 svn_ra_serf__set_ver_prop(apr_hash_t *props,
                           const char *path, svn_revnum_t rev,
                           const char *ns, const char *name,
                           const svn_string_t *val, apr_pool_t *pool);
+#define svn_ra_serf__set_rev_prop svn_ra_serf__set_ver_prop
 
 /** Property walker functions **/
 
@@ -1025,16 +1029,6 @@ svn_ra_serf__get_prop(apr_hash_t *props,
                       const char *ns,
                       const char *name);
 
-/* Set PROPS for PATH at REV revision with a NS:NAME VAL.
- *
- * The POOL governs allocation.
- */
-void
-svn_ra_serf__set_rev_prop(apr_hash_t *props,
-                          const char *path, svn_revnum_t rev,
-                          const char *ns, const char *name,
-                          const svn_string_t *val, apr_pool_t *pool);
-
 /* Same as set_rev_prop, but sets it for the unknown revision. */
 void
 svn_ra_serf__set_prop(apr_hash_t *props, const char *path,