]> granicus.if.org Git - ejabberd/commitdiff
* src/xml.erl: Removing debug printout.
authorMickaël Rémond <mickael.remond@process-one.net>
Tue, 31 Jul 2007 14:47:52 +0000 (14:47 +0000)
committerMickaël Rémond <mickael.remond@process-one.net>
Tue, 31 Jul 2007 14:47:52 +0000 (14:47 +0000)
SVN Revision: 851

src/xml.erl

index aca0735d7b482f73d2624163f049959bbfa9dafe..fd327ba2da5f834291b11d2eef99d0f421a0f2c3 100644 (file)
@@ -56,7 +56,6 @@ attr_to_list({Name, Value}) ->
     [$\s, crypt(Name), $=, $', crypt(Value), $'].
 
 crypt(S) when is_list(S) ->
-    io:format("MREMOND crypt~n",[]),
     [case C of
         $& -> "&amp;";
         $< -> "&lt;";
@@ -70,7 +69,6 @@ crypt(S) when is_binary(S) ->
 
 %% Make a cdata_binary depending on what characters it contains
 make_text_node(CData) ->
-    io:format("MREMOND CDATA~n",[]),
     case cdata_need_escape(CData) of
        cdata ->
            CDATA1 = <<"<![CDATA[">>,