예제 #1
0
 /// <summary>Add a single existing pack to the list of available pack files.</summary>
 /// <remarks>Add a single existing pack to the list of available pack files.</remarks>
 /// <param name="pack">path of the pack file to open.</param>
 /// <param name="idx">path of the corresponding index file.</param>
 /// <exception cref="System.IO.IOException">
 /// index file could not be opened, read, or is not recognized as
 /// a Git pack file index.
 /// </exception>
 public virtual void OpenPack(FilePath pack, FilePath idx)
 {
     objectDatabase.OpenPack(pack, idx);
 }
예제 #2
0
 /// <exception cref="System.IO.IOException"></exception>
 internal override PackFile OpenPack(FilePath pack, FilePath idx)
 {
     return(wrapped.OpenPack(pack, idx));
 }