summaryrefslogtreecommitdiffstats
path: root/acf/persistence/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'acf/persistence/util.lua')
-rw-r--r--acf/persistence/util.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/acf/persistence/util.lua b/acf/persistence/util.lua
deleted file mode 100644
index a657411..0000000
--- a/acf/persistence/util.lua
+++ /dev/null
@@ -1,22 +0,0 @@
---[[
-Copyright (c) 2012-2013 Kaarle Ritvanen
-See LICENSE file for license details
---]]
-
-local M = {}
-
-function M.open_file(path, mode)
- local file = io.open(path, mode)
- if not file then error('Cannot open file: '..path) end
- return file
-end
-
-function M.read_file(path)
- local file = M.open_file(path)
- local data = ''
- for line in file:lines() do data = data..line end
- file:close()
- return data
-end
-
-return M