@@ -172,7 +172,7 @@ impl crate::Repository {
172
172
}
173
173
174
174
fn write_object_inner ( & self , buf : & [ u8 ] , kind : gix_object:: Kind ) -> Result < Id < ' _ > , object:: write:: Error > {
175
- let oid = gix_object:: try_compute_hash ( self . object_hash ( ) , kind, buf)
175
+ let oid = gix_object:: compute_hash ( self . object_hash ( ) , kind, buf)
176
176
. map_err ( |err| Box :: new ( err) as Box < dyn std:: error:: Error + Send + Sync > ) ?;
177
177
if self . objects . exists ( & oid) {
178
178
return Ok ( oid. attach ( self ) ) ;
@@ -190,7 +190,7 @@ impl crate::Repository {
190
190
/// pre-hashing the data, and checking if the object is already present.
191
191
pub fn write_blob ( & self , bytes : impl AsRef < [ u8 ] > ) -> Result < Id < ' _ > , object:: write:: Error > {
192
192
let bytes = bytes. as_ref ( ) ;
193
- let oid = gix_object:: try_compute_hash ( self . object_hash ( ) , gix_object:: Kind :: Blob , bytes)
193
+ let oid = gix_object:: compute_hash ( self . object_hash ( ) , gix_object:: Kind :: Blob , bytes)
194
194
. map_err ( |err| Box :: new ( err) as Box < dyn std:: error:: Error + Send + Sync > ) ?;
195
195
if self . objects . exists ( & oid) {
196
196
return Ok ( oid. attach ( self ) ) ;
@@ -216,7 +216,7 @@ impl crate::Repository {
216
216
}
217
217
218
218
fn write_blob_stream_inner ( & self , buf : & [ u8 ] ) -> Result < Id < ' _ > , object:: write:: Error > {
219
- let oid = gix_object:: try_compute_hash ( self . object_hash ( ) , gix_object:: Kind :: Blob , buf)
219
+ let oid = gix_object:: compute_hash ( self . object_hash ( ) , gix_object:: Kind :: Blob , buf)
220
220
. map_err ( |err| Box :: new ( err) as Box < dyn std:: error:: Error + Send + Sync > ) ?;
221
221
if self . objects . exists ( & oid) {
222
222
return Ok ( oid. attach ( self ) ) ;
0 commit comments