summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/luasrc/sys/zoneinfo.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base/luasrc/sys/zoneinfo.lua')
-rw-r--r--modules/luci-base/luasrc/sys/zoneinfo.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/luci-base/luasrc/sys/zoneinfo.lua b/modules/luci-base/luasrc/sys/zoneinfo.lua
deleted file mode 100644
index aa054a246f..0000000000
--- a/modules/luci-base/luasrc/sys/zoneinfo.lua
+++ /dev/null
@@ -1,19 +0,0 @@
--- Licensed to the public under the Apache License 2.0.
-
-local setmetatable, require, rawget, rawset = setmetatable, require, rawget, rawset
-
-module "luci.sys.zoneinfo"
-
-setmetatable(_M, {
- __index = function(t, k)
- if k == "TZ" and not rawget(t, k) then
- local m = require "luci.sys.zoneinfo.tzdata"
- rawset(t, k, rawget(m, k))
- elseif k == "OFFSET" and not rawget(t, k) then
- local m = require "luci.sys.zoneinfo.tzoffset"
- rawset(t, k, rawget(m, k))
- end
-
- return rawget(t, k)
- end
-})