Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Removed unneeded Default constraint (#1157)
Browse files Browse the repository at this point in the history
  • Loading branch information
hohav authored Jul 12, 2022
1 parent 6de9edf commit 4866302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/list/mutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl<O: Offset, M: MutableArray> MutableListArray<O, M> {
}
}

impl<O: Offset, M: MutableArray + Default + 'static> MutableArray for MutableListArray<O, M> {
impl<O: Offset, M: MutableArray + 'static> MutableArray for MutableListArray<O, M> {
fn len(&self) -> usize {
self.offsets.len() - 1
}
Expand Down

0 comments on commit 4866302

Please sign in to comment.