You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/03/11 16:05:27 UTC

svn commit: r1665896 - /subversion/trunk/subversion/include/svn_fs.h

Author: stefan2
Date: Wed Mar 11 15:05:27 2015
New Revision: 1665896

URL: http://svn.apache.org/r1665896
Log:
* subversion/include/svn_fs.h
  (svn_fs_compare_ids,
   svn_fs_check_related): Remove the silly "may become deprecated" note
                          and say what we actually want.  Add a @see.

Modified:
    subversion/trunk/subversion/include/svn_fs.h

Modified: subversion/trunk/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_fs.h?rev=1665896&r1=1665895&r2=1665896&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_fs.h (original)
+++ subversion/trunk/subversion/include/svn_fs.h Wed Mar 11 15:05:27 2015
@@ -920,9 +920,9 @@ typedef struct svn_fs_id_t svn_fs_id_t;
 /** Return -1, 0, or 1 if node revisions @a a and @a b are respectively
  * unrelated, equivalent, or otherwise related (part of the same node).
  *
- * @note Using FS ID based functions is discouraged since 1.9 and may be
- * fully deprecated in future releases.  New code should use
- * #svn_fs_node_relation() and #svn_fs_node_relation_t instead.
+ * @note Consider using the more expressive #svn_fs_node_relation() instead.
+ *
+ * @see #svn_fs_node_relation
  */
 int
 svn_fs_compare_ids(const svn_fs_id_t *a,
@@ -933,9 +933,9 @@ svn_fs_compare_ids(const svn_fs_id_t *a,
 /** Return TRUE if node revisions @a id1 and @a id2 are related (part of the
  * same node), else return FALSE.
  *
- * @note Using FS ID based functions is discouraged since 1.9 and may be
- * fully deprecated in future releases.  New code should use
- * #svn_fs_node_relation() and #svn_fs_node_relation_t instead.
+ * @note Consider using the more expressive #svn_fs_node_relation() instead.
+ *
+ * @see #svn_fs_node_relation
  */
 svn_boolean_t
 svn_fs_check_related(const svn_fs_id_t *id1,