428859 patches from quickstart branch
This commit is contained in:
parent
4ce60a1c83
commit
6e0f8b505e
|
@ -150,9 +150,14 @@ public class ContainerInitializer
|
|||
|
||||
public String toString()
|
||||
{
|
||||
List<String> interested = new ArrayList<>(_interestedTypes.length);
|
||||
List<String> interested = Collections.emptyList();
|
||||
if (_interestedTypes != null)
|
||||
{
|
||||
interested = new ArrayList<>(_interestedTypes.length);
|
||||
for (Class<?> c : _interestedTypes)
|
||||
interested.add(c.getName());
|
||||
}
|
||||
|
||||
return String.format("ContainerInitializer{%s,interested=%s,applicable=%s,annotated=%s}",_target.getClass().getName(),interested,_applicableTypeNames,_annotatedTypeNames);
|
||||
}
|
||||
|
||||
|
|
|
@ -156,8 +156,9 @@ public class XmlAppendable
|
|||
}
|
||||
}
|
||||
|
||||
public Stack<String> getOpenTags()
|
||||
public void literal(String xml) throws IOException
|
||||
{
|
||||
return (Stack<String>)_tags.clone();
|
||||
_out.append(xml);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue