From 083ae8bd44ad34859781ea88cae9f57d9404c7e5 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sun, 7 Apr 2019 18:25:13 +0300 Subject: Remove commented code --- ui/messages/htmlmessage.go | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/ui/messages/htmlmessage.go b/ui/messages/htmlmessage.go index 33e4d87..51678ba 100644 --- a/ui/messages/htmlmessage.go +++ b/ui/messages/htmlmessage.go @@ -65,7 +65,6 @@ func (hw *HTMLMessage) CalculateBuffer(preferences config.UserPreferences, width // TODO account for bare messages in initial startX startX := 0 hw.Root.calculateBuffer(width, startX, preferences.BareMessageView) - //debug.Print(hw.Root.String()) } func (hw *HTMLMessage) Height() int { @@ -73,10 +72,12 @@ func (hw *HTMLMessage) Height() int { } func (hw *HTMLMessage) PlainText() string { + // FIXME return "Plaintext unavailable" } func (hw *HTMLMessage) NotificationContent() string { + // FIXME return "Notification content unavailable" } @@ -212,20 +213,12 @@ func (he *HTMLEntity) calculateBuffer(width, startX int, bare bool) int { return 0 } -// Regular expressions used to split lines when calculating the buffer. -/*var ( - boundaryPattern = regexp.MustCompile(`([[:punct:]]\s*|\s+)`) - bareBoundaryPattern = regexp.MustCompile(`(\s+)`) - spacePattern = regexp.MustCompile(`\s+`) -)*/ - func trim(extract, full string, bare bool) (string, bool) { if len(extract) == len(full) { return extract, true } if spaces := spacePattern.FindStringIndex(full[len(extract):]); spaces != nil && spaces[0] == 0 { extract = full[:len(extract)+spaces[1]] - //return extract, true } regex := boundaryPattern if bare { -- cgit v1.2.3