diff options
author | Peter Kozak <spag@golwen.net> | 2013-03-14 05:40:41 -0400 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-03-14 05:40:41 -0400 |
commit | 7df40cfaea4690be9e5dabf57563dddec797fa3b (patch) | |
tree | ef10086b84158a7e223bd53a9865c377ae5eb6b5 /misc/freeswitch/scripts/common | |
parent | f68ec2773bef2edccad6a93f92fc33c23e59272e (diff) |
obsolete methods removed
Diffstat (limited to 'misc/freeswitch/scripts/common')
-rw-r--r-- | misc/freeswitch/scripts/common/str.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/misc/freeswitch/scripts/common/str.lua b/misc/freeswitch/scripts/common/str.lua index 0673421..3fd8fde 100644 --- a/misc/freeswitch/scripts/common/str.lua +++ b/misc/freeswitch/scripts/common/str.lua @@ -129,23 +129,3 @@ function append(buffer, value, separator, prefix, suffix) return buffer; end - --- concatenate array values to string -function concat(array, separator, prefix, suffix) - local buffer = ''; - for key, value in pairs(array) do - buffer = append(buffer, value, separator, prefix, suffix); - end - - return buffer; -end - --- concatenate array keys to string -function concat_keys(array, separator, prefix, suffix) - local buffer = ''; - for key, value in pairs(array) do - buffer = append(buffer, key, separator, prefix, suffix); - end - - return buffer; -end |