summaryrefslogtreecommitdiffstats
path: root/src/configs/git_state.rs
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2021-03-15 11:40:52 +0100
committerGitHub <noreply@github.com>2021-03-15 11:40:52 +0100
commit052b56fe10494c37afd058548c5dc7e2f359e08c (patch)
tree041d9cb554a79bfe8a997d75f13a75a0ba51801e /src/configs/git_state.rs
parent6fd7d7b5010c28d0557e4ff562187098abaa3bc6 (diff)
refactor: replace RootModuleConfig with Default (#2458)
Diffstat (limited to 'src/configs/git_state.rs')
-rw-r--r--src/configs/git_state.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configs/git_state.rs b/src/configs/git_state.rs
index a938f5568..5bc214dd4 100644
--- a/src/configs/git_state.rs
+++ b/src/configs/git_state.rs
@@ -1,4 +1,4 @@
-use crate::config::{ModuleConfig, RootModuleConfig};
+use crate::config::ModuleConfig;
use starship_module_config_derive::ModuleConfig;
@@ -16,8 +16,8 @@ pub struct GitStateConfig<'a> {
pub disabled: bool,
}
-impl<'a> RootModuleConfig<'a> for GitStateConfig<'a> {
- fn new() -> Self {
+impl<'a> Default for GitStateConfig<'a> {
+ fn default() -> Self {
GitStateConfig {
rebase: "REBASING",
merge: "MERGING",