aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2017-12-17 00:01:03 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2017-12-17 20:05:55 +0100
commit32022e9764123c6a8191a6496403cffc5c1fcc48 (patch)
tree17f9d795051574d629b7a2fa96d2a1e41831bcec /org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
parentc7093f5cbe92fbce7242f0be05aa942d9e15be9d (diff)
downloadjgit-32022e9764123c6a8191a6496403cffc5c1fcc48.tar.gz
jgit-32022e9764123c6a8191a6496403cffc5c1fcc48.zip
Fix javadoc in org.eclipse.jgit.archive
Change-Id: Ibef80b15f17e884f3085e324283cefc738236a4d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
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.java13
1 files changed, 7 insertions, 6 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 7b7fbcd83e..7559ada864 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
@@ -70,6 +70,7 @@ public final class TarFormat extends BaseFormat implements
private static final List<String> SUFFIXES = Collections
.unmodifiableList(Arrays.asList(".tar")); //$NON-NLS-1$
+ /** {@inheritDoc} */
@Override
public ArchiveOutputStream createArchiveOutputStream(OutputStream s)
throws IOException {
@@ -77,9 +78,7 @@ public final class TarFormat extends BaseFormat implements
Collections.<String, Object> emptyMap());
}
- /**
- * @since 4.0
- */
+ /** {@inheritDoc} */
@Override
public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
Map<String, Object> o) throws IOException {
@@ -89,6 +88,7 @@ public final class TarFormat extends BaseFormat implements
return applyFormatOptions(out, o);
}
+ /** {@inheritDoc} */
@Deprecated
@Override
public void putEntry(ArchiveOutputStream out,
@@ -97,9 +97,7 @@ public final class TarFormat extends BaseFormat implements
putEntry(out, null, path, mode,loader);
}
- /**
- * @since 4.7
- */
+ /** {@inheritDoc} */
@Override
public void putEntry(ArchiveOutputStream out,
ObjectId tree, String path, FileMode mode, ObjectLoader loader)
@@ -150,16 +148,19 @@ public final class TarFormat extends BaseFormat implements
out.closeArchiveEntry();
}
+ /** {@inheritDoc} */
@Override
public Iterable<String> suffixes() {
return SUFFIXES;
}
+ /** {@inheritDoc} */
@Override
public boolean equals(Object other) {
return (other instanceof TarFormat);
}
+ /** {@inheritDoc} */
@Override
public int hashCode() {
return getClass().hashCode();