aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
diff options
context:
space:
mode:
authorJonathan Nieder <jrn@google.com>2013-05-29 10:42:35 -0700
committerJonathan Nieder <jrn@google.com>2013-05-29 12:36:36 -0700
commit659cadf06d165f1a31a0466689d77dff7330f99d (patch)
tree5eac8fd1ecd7b8b14d11b1366c7b176258879b56 /org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
parent79583aeba7819de28f1e70723713e59595e6ff18 (diff)
downloadjgit-659cadf06d165f1a31a0466689d77dff7330f99d.tar.gz
jgit-659cadf06d165f1a31a0466689d77dff7330f99d.zip
Add missing javadoc for archive code
Document archive formats, the archive format interface, and the parameters of the GitAPIException constructors. Noticed by eclipse. Reported-by: Dani Megert <Daniel_Megert@ch.ibm.com> Change-Id: I22b5f9d4c0358bbe867c1906feec7c279e214273
Diffstat (limited to 'org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java')
-rw-r--r--org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
index 2e5683c2b5..3b27489e26 100644
--- a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
+++ b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
@@ -53,6 +53,9 @@ import org.eclipse.jgit.api.ArchiveCommand;
import org.eclipse.jgit.lib.FileMode;
import org.eclipse.jgit.lib.ObjectLoader;
+/**
+ * Unix TAR format (ustar + old GNU long filename extension).
+ */
public class TarFormat implements ArchiveCommand.Format<ArchiveOutputStream> {
public ArchiveOutputStream createArchiveOutputStream(OutputStream s) {
return new TarArchiveOutputStream(s);