Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java
index 046cea4295b..6cfd6299a8e 100644
--- a/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java
+++ b/plugins/org.eclipse.osee.disposition.rest/src/org/eclipse/osee/disposition/rest/resources/DispoSourceFileResource.java
@@ -92,6 +92,7 @@ public class DispoSourceFileResource {
};
String contentDisposition =
String.format("attachment; filename=\"%s\"; creation-date=\"%s\"", fileName, new Date());
- return Response.ok(streamingOutput).header("Content-Disposition", contentDisposition).type("application/text").build();
+ return Response.ok(streamingOutput).header("Content-Disposition", contentDisposition).type(
+ "application/text").build();
}
}

Back to the top