From d9311609229fa3f8f5faf361c4ef60f719a674b0 Mon Sep 17 00:00:00 2001 From: nikitar020 Date: Wed, 13 Mar 2019 00:35:03 +0700 Subject: [PATCH] remove commented out functions --- terminal/terminal.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/terminal/terminal.go b/terminal/terminal.go index 1667781..170031c 100644 --- a/terminal/terminal.go +++ b/terminal/terminal.go @@ -39,17 +39,12 @@ type WindowManipulationInterface interface { MoveWindow(term *Terminal, pixelX int, pixelY int) error ResizeWindowByPixels(term *Terminal, pixelsHeight int, pixelsWidth int) error BringWindowToFront(term *Terminal) error - //SendWindowToBack(term *Terminal) error - //RefreshWindow(term *Terminal) error ResizeWindowByChars(term *Terminal, charsHeight int, charsWidth int) error MaximizeWindow(term *Terminal) error ReportWindowState(term *Terminal) error ReportWindowPosition(term *Terminal) error ReportWindowSizeInPixels(term *Terminal) error ReportWindowSizeInChars(term *Terminal) error - //ReportScreenSizeInChars(term *Terminal) error) - //ReportIconLabel(term *Terminal) error) - //ReportWindowTitle(term *Terminal) error } type Terminal struct {