You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Yoshiki Hayashi <yo...@xemacs.org> on 2001/02/26 09:33:38 UTC

[PATCH] Clean up

* fs.h (struct svn_fs_t): Remove DB *clones.
* txn.h (svn_fs__create_transactions, svn_fs__open_transactions):
  Removed.  These functions do the same thing as
  svn_fs__open_transactions_table with different signature.

Index: subversion/libsvn_fs/fs.h
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_fs/fs.h,v
retrieving revision 1.17
diff -u -r1.17 fs.h
--- subversion/libsvn_fs/fs.h	2001/02/12 00:26:14	1.17
+++ subversion/libsvn_fs/fs.h	2001/02/26 08:58:31
@@ -38,7 +38,7 @@
   DB_ENV *env;
 
   /* The filesystem's various tables.  See `structure' for details.  */
-  DB *nodes, *clones, *revisions, *transactions;
+  DB *nodes, *revisions, *transactions;
 
   /* A callback function for printing warning messages, and a baton to
      pass through to it.  */
Index: subversion/libsvn_fs/txn.h
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_fs/txn.h,v
retrieving revision 1.8
diff -u -r1.8 txn.h
--- subversion/libsvn_fs/txn.h	2001/02/24 09:13:31	1.8
+++ subversion/libsvn_fs/txn.h	2001/02/26 08:58:32
@@ -14,16 +14,6 @@
 #ifndef SVN_LIBSVN_FS_TXN_H
 #define SVN_LIBSVN_FS_TXN_H
 
-/* Create a new `transactions' table for the new filesystem FS.
-   FS->env must already be open; this sets FS->nodes.  */
-svn_error_t *svn_fs__create_transactions (svn_fs_t *fs);
-
-
-/* Open the existing `transactions' table for the filesystem FS.
-   FS->env must already be open; this sets FS->nodes.  */
-svn_error_t *svn_fs__open_transactions (svn_fs_t *fs);
-
-
 /* Return a pointer to the ID of TXN.  The return value is live for as
    long as TXN is.  */
 const char *svn_fs__txn_id (svn_fs_txn_t *txn);


-- 
Yoshiki Hayashi