From 2628b2ce1f9d2935badc7031c0c674d895749fc1 Mon Sep 17 00:00:00 2001 From: Ren Amamiya Date: Tue, 1 Sep 2026 11:17:32 +0700 Subject: [PATCH] clean up --- crates/workspace/src/views/repo_detail/browser.rs | 5 ----- crates/workspace/src/views/repo_detail/commits.rs | 4 ---- 2 files changed, 9 deletions(-) diff --git a/crates/workspace/src/views/repo_detail/browser.rs b/crates/workspace/src/views/repo_detail/browser.rs index f8771bc..eeda566 100644 --- a/crates/workspace/src/views/repo_detail/browser.rs +++ b/crates/workspace/src/views/repo_detail/browser.rs @@ -1,8 +1,3 @@ -//! File explorer of the repository detail view: the file tree column and the -//! content column (README / file preview), backed by persistent -//! [`TextViewState`]s for markdown documents and persistent [`InputState`]s -//! for code files. - use gpui::prelude::*; use gpui::{AnyElement, Context, Entity, SharedString, WeakEntity, Window, div, px}; use gpui_component::button::{Button, ButtonVariants}; diff --git a/crates/workspace/src/views/repo_detail/commits.rs b/crates/workspace/src/views/repo_detail/commits.rs index c86c64b..3c757b6 100644 --- a/crates/workspace/src/views/repo_detail/commits.rs +++ b/crates/workspace/src/views/repo_detail/commits.rs @@ -1,7 +1,3 @@ -//! Commits tab of the repository detail view: a virtual list of all -//! commits reachable from HEAD, newest first, with the total count shown -//! as a badge on the tab. - use gpui::prelude::*; use gpui::{AnyElement, App, Context, WeakEntity, div, px}; use gpui_component::scroll::Scrollbar;