Browse Source

Fix empty control block warnings

Change-Id: I7c546fa89f5e1933cff6648b2e03e07db61273e8
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v2.2.0.201212191850-r
Matthias Sohn 11 years ago
parent
commit
7b1d7ac90e
1 changed files with 8 additions and 7 deletions
  1. 8
    7
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Archive.java

+ 8
- 7
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Archive.java View File

@@ -115,7 +115,7 @@ class Archive extends TextBuiltin {
public enum Format {
ZIP,
TAR
};
}

private static interface Archiver {
ArchiveOutputStream createArchiveOutputStream(OutputStream s);
@@ -137,13 +137,14 @@ class Archive extends TextBuiltin {
throws IOException {
final ZipArchiveEntry entry = new ZipArchiveEntry(path);

if (mode == FileMode.REGULAR_FILE)
; // ok
else if (mode == FileMode.EXECUTABLE_FILE ||
mode == FileMode.SYMLINK)
if (mode == FileMode.REGULAR_FILE) {
// ok
} else if (mode == FileMode.EXECUTABLE_FILE
|| mode == FileMode.SYMLINK) {
entry.setUnixMode(mode.getBits());
else
} else {
warnArchiveEntryModeIgnored(path);
}
entry.setSize(loader.getSize());
out.putArchiveEntry(entry);
loader.copyTo(out);
@@ -162,7 +163,7 @@ class Archive extends TextBuiltin {
final TarArchiveEntry entry = new TarArchiveEntry( //
path, TarConstants.LF_SYMLINK);
entry.setLinkName(new String( //
loader.getCachedBytes(100), "UTF-8"));
loader.getCachedBytes(100), "UTF-8")); //$NON-NLS-1$
out.putArchiveEntry(entry);
out.closeArchiveEntry();
return;

Loading…
Cancel
Save