Software /
code /
verse
Changeset
469:b49d5df43a4c
jingle_ibb: Remove unused import of table.concat
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 17 Mar 2023 09:26:45 +0000 |
parents | 468:fae5ae0ddb84 |
children | 470:e690759c5072 |
files | plugins/jingle_ibb.lua |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/jingle_ibb.lua Fri Mar 17 09:25:24 2023 +0000 +++ b/plugins/jingle_ibb.lua Fri Mar 17 09:26:45 2023 +0000 @@ -6,7 +6,6 @@ local xmlns_ibb = "http://jabber.org/protocol/ibb"; assert(base64.encode("This is a test.") == "VGhpcyBpcyBhIHRlc3Qu", "Base64 encoding failed"); assert(base64.decode("VGhpcyBpcyBhIHRlc3Qu") == "This is a test.", "Base64 decoding failed"); -local t_concat = table.concat local ibb_conn = {}; local ibb_conn_mt = { __index = ibb_conn };