Address clippy warnings.
This commit is contained in:
parent
9c33b5340a
commit
8f0ddf9632
2 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
use crate::theme::Theme;
|
use crate::theme::Theme;
|
||||||
use crate::tree::Tree;
|
use crate::tree::Tree;
|
||||||
use crate::{Document, View};
|
use crate::{Document, View};
|
||||||
use slotmap::DefaultKey as Key;
|
|
||||||
|
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ pub enum Node {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Node {
|
impl Node {
|
||||||
pub fn container(area: Rect) -> Self {
|
pub fn container() -> Self {
|
||||||
Self::Container(Box::new(Container::new()))
|
Self::Container(Box::new(Container::new()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ impl Container {
|
||||||
|
|
||||||
impl Tree {
|
impl Tree {
|
||||||
pub fn new(area: Rect) -> Self {
|
pub fn new(area: Rect) -> Self {
|
||||||
let root = Node::container(area);
|
let root = Node::container();
|
||||||
let mut nodes = HopSlotMap::new();
|
let mut nodes = HopSlotMap::new();
|
||||||
let root = nodes.insert(root);
|
let root = nodes.insert(root);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue