]> source.dussan.org Git - jgit.git/commitdiff
Remove getObjectsDirectory, openPack from base API 16/2316/2
authorShawn O. Pearce <spearce@spearce.org>
Sun, 23 Jan 2011 01:27:20 +0000 (17:27 -0800)
committerShawn O. Pearce <spearce@spearce.org>
Thu, 27 Jan 2011 16:56:35 +0000 (08:56 -0800)
These two methods are specific to the FileRepository implementation
and should not be exposed as part of the base Repository API.  Now
that PackParser is generic and does not require these two methods
to import a pack stream into a repostiory, it is safe to remove
these and get them out of the public view.

Change-Id: I8990004d08074657f467849dabfdaa7e6674e69a
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java

index 65751275487e5ba6e7449031da47cd73071e06db..c4d2d73bc5d7bccd1225ece03dd75ee477f66df5 100644 (file)
@@ -180,11 +180,6 @@ public abstract class Repository {
                return gitDir;
        }
 
-       /**
-        * @return the directory containing the objects owned by this repository.
-        */
-       public abstract File getObjectsDirectory();
-
        /**
         * @return the object database which stores this repository's data.
         */
@@ -700,19 +695,6 @@ public abstract class Repository {
                getRefDatabase().close();
        }
 
-       /**
-        * Add a single existing pack to the list of available pack files.
-        *
-        * @param pack
-        *            path of the pack file to open.
-        * @param idx
-        *            path of the corresponding index file.
-        * @throws IOException
-        *             index file could not be opened, read, or is not recognized as
-        *             a Git pack file index.
-        */
-       public abstract void openPack(File pack, File idx) throws IOException;
-
        public String toString() {
                String desc;
                if (getDirectory() != null)