Merge with 2.0.0-m3

This commit is contained in:
René Pfeuffer
2018-11-07 17:42:20 +01:00
29 changed files with 690 additions and 135 deletions

View File

@@ -92,7 +92,7 @@ public class DiffStreamingOutput implements StreamingOutput
public void write(OutputStream output) throws IOException {
try
{
builder.retriveContent(output);
builder.retrieveContent(output);
}
finally
{

View File

@@ -63,7 +63,7 @@ public class DiffRootResource {
repositoryService.getDiffCommand()
.setRevision(revision)
.setFormat(diffFormat)
.retriveContent(output);
.retrieveContent(output);
};
return Response.ok(responseEntry)
.header(HEADER_CONTENT_DISPOSITION, HttpUtil.createContentDispositionAttachmentHeader(String.format("%s-%s.diff", name, revision)))