Skip to content

Commit

Permalink
Fix codacy
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Kopp <kopp.dev@gmail.com>
  • Loading branch information
koppor committed Mar 8, 2017
1 parent e8cb419 commit 25d1063
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public static Response getCSARofSelectedResource(final AbstractComponentInstance
sb.append(resource.getXmlId().getEncoded());
sb.append(org.eclipse.winery.repository.Constants.SUFFIX_CSAR);
sb.append("\"");
return Response.ok().header("Content-Disposition", sb.toString()).type(org.eclipse.winery.common.constants.MimeTypes.MIMETYPE_ZIP).entity(so).build();
return Response.ok().header("Content-Disposition", sb.toString()).type(MimeTypes.MIMETYPE_ZIP).entity(so).build();
}

/**
Expand Down

0 comments on commit 25d1063

Please sign in to comment.