Skip to content
Snippets Groups Projects
Commit 4a2c73ec authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Removed superfluous line break

parent ee1f730f
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ public class LogicService {
@GET
@Path("forecastresults/{forecastConfigurationId}/csv")
@GZIP
@Produces("text/plain;charset=UTF-8")
@Produces("text/csv;charset=UTF-8")
public Response getForecastResultsCSV(
@PathParam("forecastConfigurationId") Long forecastConfigurationId,
@QueryParam("userUUID") String userUUID
......@@ -153,7 +153,6 @@ public class LogicService {
{
line += "," + valueMap.get(parameters.get(i));
}
line += "\n";
return line;
}).collect(Collectors.joining("\n"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment