aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-10 21:59:21 +0000
committermat <github@matdoes.dev>2021-12-10 21:59:21 +0000
commit01a059c20cf3cf9330404d9e408a586500757fe6 (patch)
tree1bf64105bbb45a698e6e9233b3a64fe24cfb7a7c /minecraft-chat/src
parent2ceaea5148d7005457de54fdcd2eff0308be2aca (diff)
downloadazalea-drasl-01a059c20cf3cf9330404d9e408a586500757fe6.tar.xz
remove splitter
Diffstat (limited to 'minecraft-chat/src')
-rw-r--r--minecraft-chat/src/lib.rs1
-rw-r--r--minecraft-chat/src/splitter.rs7
2 files changed, 0 insertions, 8 deletions
diff --git a/minecraft-chat/src/lib.rs b/minecraft-chat/src/lib.rs
index 5e9f1e3a..b7035e13 100644
--- a/minecraft-chat/src/lib.rs
+++ b/minecraft-chat/src/lib.rs
@@ -6,7 +6,6 @@ extern crate lazy_static;
pub mod base_component;
pub mod component;
-pub mod splitter;
pub mod style;
pub mod text_component;
pub mod translatable_component;
diff --git a/minecraft-chat/src/splitter.rs b/minecraft-chat/src/splitter.rs
deleted file mode 100644
index 812c3365..00000000
--- a/minecraft-chat/src/splitter.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-//! Used for splitting text
-//! This includes wrapping long lines and applying legacy color formats.
-//! I'm not sure why applying legacy color formats is done here but that's the way Minecraft does it.
-
-use crate::component::Component;
-
-fn split_lines(component: Component) {}