Fix toString(XMLTag) method.

This commit is contained in:
Christian P. MOMON 2014-06-08 17:51:51 +02:00
parent c63b0923aa
commit 48d383cedc

View file

@ -359,7 +359,10 @@ public class XMLTools
{ {
result = "null"; result = "null";
} }
else
{
result = "[label=" + source.getLabel() + "][type=" + source.getType().toString() + "][content=" + source.getContent() + "]"; result = "[label=" + source.getLabel() + "][type=" + source.getType().toString() + "][content=" + source.getContent() + "]";
}
// //
return result; return result;