From cb5684831e30e133ea9d771d6354adaa7e0af8cc Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sat, 14 Apr 2018 07:31:12 +0200 Subject: [PATCH] Remove unused `Buffer` class. --- Library/Homebrew/cask/lib/hbc/utils.rb | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Library/Homebrew/cask/lib/hbc/utils.rb b/Library/Homebrew/cask/lib/hbc/utils.rb index 0f44c0157f..01ab4dad7f 100644 --- a/Library/Homebrew/cask/lib/hbc/utils.rb +++ b/Library/Homebrew/cask/lib/hbc/utils.rb @@ -4,17 +4,6 @@ require "stringio" BUG_REPORTS_URL = "https://github.com/caskroom/homebrew-cask#reporting-bugs".freeze -class Buffer < StringIO - extend Predicable - - attr_predicate :tty? - - def initialize(tty = false) - super() - @tty = tty - end -end - # global methods def odebug(title, *sput)