aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-05 01:47:08 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-05 01:47:08 -0500
commitcd1d70badb3a3614c0a084b96e784fcd53921ae6 (patch)
tree87163f4fc4a2d71615682673bcab773faabb4be8
parentc8a23e4837441ecb02b0fe89143433b652192e7f (diff)
downloadvt100-rust-cd1d70badb3a3614c0a084b96e784fcd53921ae6.tar.gz
vt100-rust-cd1d70badb3a3614c0a084b96e784fcd53921ae6.zip
this method isn't useful
-rw-r--r--src/cell.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 3c92076..da6c86f 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -8,11 +8,6 @@ pub struct Cell {
}
impl Cell {
- /// Creates a new cell.
- pub fn new() -> Self {
- Self::default()
- }
-
pub(crate) fn set(&mut self, c: String, a: crate::attrs::Attrs) {
self.contents = c;
self.attrs = a;