aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils
diff options
context:
space:
mode:
authorMarkus Reiter2017-05-29 01:45:05 +0200
committerMarkus Reiter2017-05-29 01:45:05 +0200
commitdc4f30393741ab7bc8115fa68d8bbbee404f22d9 (patch)
tree3b769bdc5a6cfdecbfffa765e42c91efeb6afac8 /Library/Homebrew/utils
parent54c4580871f1e029f2d18343bb65b27450d807cd (diff)
downloadbrew-dc4f30393741ab7bc8115fa68d8bbbee404f22d9.tar.bz2
Remove unused `popen_read_text` method.
Diffstat (limited to 'Library/Homebrew/utils')
-rw-r--r--Library/Homebrew/utils/popen.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Homebrew/utils/popen.rb b/Library/Homebrew/utils/popen.rb
index 350d9a09f..4e03711a1 100644
--- a/Library/Homebrew/utils/popen.rb
+++ b/Library/Homebrew/utils/popen.rb
@@ -3,10 +3,6 @@ module Utils
popen(args, "rb", &block)
end
- def self.popen_read_text(*args, &block)
- popen(args, "r", &block)
- end
-
def self.popen_write(*args, &block)
popen(args, "wb", &block)
end