@Override
 public void close() throws XMLStreamException {
   super.close();
   try {
     if (documentArray) {
       target.endArray();
     }
     target.close();
   } catch (IOException e) {
     throw new XMLStreamException("Close failed", e);
   }
 }