Software /
code /
prosody
Comparison
util/stanza.lua @ 4462:2ee422bdafbe
util.stanza: Remove unused __add metamethod
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 21 Dec 2011 07:58:22 +0000 |
parent | 4200:fb487ee690ea |
child | 4749:b9de59ea8dad |
comparison
equal
deleted
inserted
replaced
4461:a81d045e7d16 | 4462:2ee422bdafbe |
---|---|
256 end | 256 end |
257 end | 257 end |
258 return type, condition or "undefined-condition", text; | 258 return type, condition or "undefined-condition", text; |
259 end | 259 end |
260 | 260 |
261 function stanza_mt.__add(s1, s2) | |
262 return s1:add_direct_child(s2); | |
263 end | |
264 | |
265 | |
266 do | 261 do |
267 local id = 0; | 262 local id = 0; |
268 function new_id() | 263 function new_id() |
269 id = id + 1; | 264 id = id + 1; |
270 return "lx"..id; | 265 return "lx"..id; |