From a7550666ddf84e8f44c87e2ea948f2a4e9de5e2a Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 13 May 2015 22:50:05 +0200 Subject: [PATCH] Remove dead code --- src/tokenized-line.coffee | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/tokenized-line.coffee b/src/tokenized-line.coffee index 012d68996..cbc56da99 100644 --- a/src/tokenized-line.coffee +++ b/src/tokenized-line.coffee @@ -174,16 +174,6 @@ class TokenizedLine new Token(tokenProperties) - buildText: -> - text = "" - text += token.value for token in @tokens - text - - buildBufferDelta: -> - delta = 0 - delta += token.bufferDelta for token in @tokens - delta - copy: -> copy = new TokenizedLine copy.indentLevel = @indentLevel