Author: steveking
Date: Sun May 29 07:13:25 2011
New Revision: 1128837

URL: http://svn.apache.org/viewvc?rev=1128837&view=rev
Log:
Remove function declarations that have no implementation from headers.

* subversion/libsvn_fs_fs/fs_fs.h
  (svn_fs_fs__move_into_place): remove declaration

* subversion/libsvn_ra_neon/ra_neon.h
  (svn_ra_neon__abort_commit): remove declaration

* subversion/libsvn_ra_serf/ra_serf.h
  (svn_ra_serf__get_youngest_rev): remove declaration

Modified:
    subversion/trunk/subversion/libsvn_fs_fs/fs_fs.h
    subversion/trunk/subversion/libsvn_ra_neon/ra_neon.h
    subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h

Modified: subversion/trunk/subversion/libsvn_fs_fs/fs_fs.h
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/fs_fs.h?rev=1128837&r1=1128836&r2=1128837&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/fs_fs.h (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/fs_fs.h Sun May 29 07:13:25 2011
@@ -384,15 +384,6 @@ svn_error_t *svn_fs_fs__txn_changes_fetc
                                           apr_pool_t *pool);
 
 
-/* Move a file into place from OLD_FILENAME in the transactions
-   directory to its final location NEW_FILENAME in the repository.  On
-   Unix, match the permissions of the new file to the permissions of
-   PERMS_REFERENCE.  Temporary allocations are from POOL. */
-svn_error_t *svn_fs_fs__move_into_place(const char *old_filename,
-                                        const char *new_filename,
-                                        const char *perms_reference,
-                                        apr_pool_t *pool);
-
 /* Set *PATH to the path of REV in FS, whether in a pack file or not.
    Allocate *PATH in POOL.
 

Modified: subversion/trunk/subversion/libsvn_ra_neon/ra_neon.h
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/ra_neon.h?rev=1128837&r1=1128836&r2=1128837&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_neon/ra_neon.h (original)
+++ subversion/trunk/subversion/libsvn_ra_neon/ra_neon.h Sun May 29 07:13:25 
2011
@@ -302,9 +302,6 @@ svn_error_t *svn_ra_neon__get_dir(svn_ra
                                   apr_uint32_t dirent_fields,
                                   apr_pool_t *pool);
 
-svn_error_t * svn_ra_neon__abort_commit(void *session_baton,
-                                        void *edit_baton);
-
 svn_error_t * svn_ra_neon__get_mergeinfo(
   svn_ra_session_t *session,
   apr_hash_t **mergeinfo,

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=1128837&r1=1128836&r2=1128837&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/ra_serf.h Sun May 29 07:13:25 
2011
@@ -1161,24 +1161,6 @@ svn_ra_serf__get_baseline_info(const cha
                                svn_revnum_t *latest_revnum,
                                apr_pool_t *pool);
 
-/* Set YOUNGEST_REVNUM to the head revision of the repository opened
- * by SESSION.
- *
- * NOTE: this function will first attempt to return a *cached* revnum
- * within the session_t; if not available, it makes a network request
- * to discover it.  As such, this routine is best called by internal
- * routines which need a value for HEAD which is "recent enough".
- * Routines which absolutely need the latest value to be fetched by
- * network request should call svn_ra_serf__get_baseline_info() instead.
- *
- * Use POOL for all allocations.
- */
-svn_error_t *
-svn_ra_serf__get_youngest_rev(svn_revnum_t *youngest_revnum,
-                              svn_ra_serf__session_t *session,
-                              apr_pool_t *pool);
-
-
 /** RA functions **/
 
 svn_error_t *


Reply via email to