소스 검색

Revert "Close unfinished archive entries on error"

This reverts commit 75d9b31f14.
Now that we do not try to close the ArchiveOutputStream in the error
path, there is no need to artificially close partial entries from
before the error.

Change-Id: I1f1cb08ec4e9b14c79bf4621f3fa959463034b82
Signed-off-by: Jonathan Nieder <jrn@google.com>
tags/v3.2.0.201311130903-m3
Jonathan Nieder 10 년 전
부모
커밋
3467e865ac

+ 2
- 5
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java 파일 보기

@@ -93,11 +93,8 @@ public class TarFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
}
entry.setSize(loader.getSize());
out.putArchiveEntry(entry);
try {
loader.copyTo(out);
} finally {
out.closeArchiveEntry();
}
loader.copyTo(out);
out.closeArchiveEntry();
}

public Iterable<String> suffixes() {

+ 2
- 5
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/ZipFormat.java 파일 보기

@@ -82,11 +82,8 @@ public class ZipFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
}
entry.setSize(loader.getSize());
out.putArchiveEntry(entry);
try {
loader.copyTo(out);
} finally {
out.closeArchiveEntry();
}
loader.copyTo(out);
out.closeArchiveEntry();
}

public Iterable<String> suffixes() {

Loading…
취소
저장