+ fix csv parser : ',' character are not removed anymore in quoted string correspondi...
[lgpl/argeo-commons.git] / eclipse / runtime / org.argeo.eclipse.ui.rap / src / main / java / org / argeo / eclipse / ui / specific / DownloadServiceHandler.java
index 7d47d5652db00dc11dba7835f9ff28f7fc0f4d6f..0c7eac67f1415f702127d33307c4a499a1d5239b 100644 (file)
@@ -31,6 +31,8 @@ public class DownloadServiceHandler implements IServiceHandler {
                response.setContentLength(download.length);
                String contentDisposition = "attachment; filename=\"" + fileName + "\"";
                response.setHeader("Content-Disposition", contentDisposition);
+               // response.setHeader( "Cache-Control", "no-cache" );
+
                try {
                        response.getOutputStream().write(download);
                } catch (IOException ioe) {