Remove an unused variable to suppress warning.

This commit is contained in:
Akinori MUSHA 2013-03-08 21:09:37 +09:00
parent b05008d996
commit 5f21b364d3

View file

@ -151,8 +151,6 @@ class HTTP::CookieJar
# Read cookies from Mozilla cookies.txt-style IO stream and return
# self.
def load_cookiestxt(io)
now = Time.now
io.each_line do |line|
c = HTTP::Cookie.parse_cookiestxt_line(line) and add(c)
end