diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index b4215bd224..ce61a3f7d6 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -10859,17 +10859,6 @@ impl Editor { color_fetcher: fn(&ThemeColors) -> Hsla, cx: &mut ViewContext, ) { - let snapshot = self.snapshot(cx); - // this is to try and catch a panic sooner - for range in ranges { - snapshot - .buffer_snapshot - .summary_for_anchor::(&range.start); - snapshot - .buffer_snapshot - .summary_for_anchor::(&range.end); - } - self.background_highlights .insert(TypeId::of::(), (color_fetcher, Arc::from(ranges))); self.scrollbar_marker_state.dirty = true;