chore: Revert changes made to ui crate structure (#17516)

As a part of https://github.com/zed-industries/zed/pull/17488 I
flattened module structure of ui crate to fix module_inception lint.
However, that's actually unnecessary as we can pass that lint via a
custom knob for clippy.

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-09-06 21:38:56 +02:00 committed by GitHub
parent 986e0113e5
commit 832e3e7dd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 760 additions and 825 deletions

View file

@ -13,12 +13,6 @@ pub struct List {
children: SmallVec<[AnyElement; 2]>,
}
impl Default for List {
fn default() -> Self {
Self::new()
}
}
impl List {
pub fn new() -> Self {
Self {