Fix toString(XMLTag) method.
This commit is contained in:
parent
c63b0923aa
commit
48d383cedc
1 changed files with 4 additions and 1 deletions
|
@ -359,7 +359,10 @@ public class XMLTools
|
||||||
{
|
{
|
||||||
result = "null";
|
result = "null";
|
||||||
}
|
}
|
||||||
result = "[label=" + source.getLabel() + "][type=" + source.getType().toString() + "][content=" + source.getContent() + "]";
|
else
|
||||||
|
{
|
||||||
|
result = "[label=" + source.getLabel() + "][type=" + source.getType().toString() + "][content=" + source.getContent() + "]";
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue