aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/modifier.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-18 18:13:15 +0000
committermat <github@matdoes.dev>2022-04-18 18:13:15 +0000
commitb3864af9c4af83552e37fd71a46262967572f9e6 (patch)
tree14938d1b278ad18efd86868094a73f6de85f09fa /azalea-brigadier/src/modifier.rs
parent17d9f676ccdc69743e7717bb91f7ff2999c065f8 (diff)
downloadazalea-drasl-b3864af9c4af83552e37fd71a46262967572f9e6.tar.xz
split stuff into more modules
Diffstat (limited to 'azalea-brigadier/src/modifier.rs')
-rw-r--r--azalea-brigadier/src/modifier.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/azalea-brigadier/src/modifier.rs b/azalea-brigadier/src/modifier.rs
index 68a3304e..d40d59f9 100644
--- a/azalea-brigadier/src/modifier.rs
+++ b/azalea-brigadier/src/modifier.rs
@@ -1,8 +1,6 @@
use std::rc::Rc;
-use crate::{
- context::CommandContext, exceptions::command_syntax_exception::CommandSyntaxException,
-};
+use crate::{context::CommandContext, exceptions::CommandSyntaxException};
pub type RedirectModifier<S> =
dyn Fn(&CommandContext<S>) -> Result<Vec<Rc<S>>, CommandSyntaxException>;