[Minor] switched to StringHelper.isNotEmpty()

This commit is contained in:
Robert von Burg 2014-01-31 19:02:21 +01:00
parent 368f8f14a4
commit 49df0b54da
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public abstract class AbstractToSaxWriterVisitor {
this.writer.writeStartElement(tag);
this.writer.writeAttribute(Tags.ID, element.getId());
if (!StringHelper.isEmpty(element.getName()))
if (StringHelper.isNotEmpty(element.getName()))
this.writer.writeAttribute(Tags.NAME, element.getName());
this.writer.writeAttribute(Tags.TYPE, element.getType());
}