Bump supported Crystal version

This commit is contained in:
Omar Roth
2019-09-30 15:35:38 -04:00
parent eef66de68c
commit da07f99d3d
2 changed files with 1 additions and 14 deletions

View File

@@ -237,16 +237,3 @@ class HTTP::Client
response
end
end
struct Crystal::ThreadLocalValue(T)
@values = Hash(Thread, T).new
def get(&block : -> T)
th = Thread.current
if !@values[th]?
@values[th] = yield
else
@values[th]
end
end
end