From cb1337800dfaeaa0134e8c2a40815fd9174bf55a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 8 Apr 2017 22:48:44 +0000 Subject: reduce method calls with String#start_with? These three cold call sites instruction sequence size by a few hundred bytes combined since we no longer support Ruby 1.8.6. The "?/" shorthand is esoteric and no longer avoids allocation in Ruby 1.9+ (not that this is hot code). --- lib/unicorn/http_server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/unicorn/http_server.rb') diff --git a/lib/unicorn/http_server.rb b/lib/unicorn/http_server.rb index 3827f2e..f33aa25 100644 --- a/lib/unicorn/http_server.rb +++ b/lib/unicorn/http_server.rb @@ -148,7 +148,7 @@ class Unicorn::HttpServer def listeners=(listeners) cur_names, dead_names = [], [] listener_names.each do |name| - if ?/ == name[0] + if name.start_with?('/') # mark unlinked sockets as dead so we can rebind them (File.socket?(name) ? cur_names : dead_names) << name else -- cgit v1.2.3-24-ge0c7