{
log.debug("Exportfilter NOT enabled");
// response can't be already committed at this time
if (response.isCommitted())
{
throw new ExportException(getClass());
}
try
{
response.reset();
pageContext.getOut().clearBuffer();
}
catch (Exception e)
{
throw new ExportException(getClass());
}
}
if (!usingFilter && characterEncoding != null && !StringUtils.contains(mimeType, "charset") //$NON-NLS-1$
&& exportView instanceof TextExportView)