Browse Source

Remove unused get_raw_delta.

Jelmer Vernooij 2 năm trước cách đây
mục cha
commit
1ce3de887c
1 tập tin đã thay đổi với 0 bổ sung4 xóa
  1. 0 4
      dulwich/pack.py

+ 0 - 4
dulwich/pack.py

@@ -123,10 +123,6 @@ class PackedObjectContainer(ObjectContainer):
         """Get a raw unresolved object."""
         raise NotImplementedError(self.get_raw_unresolved)
 
-    def get_raw_delta(self, sha1: bytes) -> Tuple[int, Union[bytes, None], List[bytes]]:
-        """Get a raw delta text."""
-        raise NotImplementedError(self.get_raw_delta)
-
 
 def take_msb_bytes(read: Callable[[int], bytes], crc32: Optional[int] = None) -> Tuple[List[int], Optional[int]]:
     """Read bytes marked with most significant bit.