summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOmar Roth <omarroth@protonmail.com>2019-09-30 15:35:38 -0400
committerOmar Roth <omarroth@protonmail.com>2019-09-30 15:36:54 -0400
commitda07f99d3d81242064722d05eab35b028568fe1f (patch)
treebd9b7e23b22e6ef5e2979ee1a2ce69a3d6da1c96 /src
parenteef66de68ce1a998f5102dd62868109d20163a2b (diff)
downloadinvidious-da07f99d3d81242064722d05eab35b028568fe1f.tar.gz
invidious-da07f99d3d81242064722d05eab35b028568fe1f.tar.bz2
invidious-da07f99d3d81242064722d05eab35b028568fe1f.zip
Bump supported Crystal version
Diffstat (limited to 'src')
-rw-r--r--src/invidious/helpers/handlers.cr13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/invidious/helpers/handlers.cr b/src/invidious/helpers/handlers.cr
index 949eb335..f2240691 100644
--- a/src/invidious/helpers/handlers.cr
+++ b/src/invidious/helpers/handlers.cr
@@ -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