summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.archive/src
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2013-06-01 23:54:24 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2013-06-02 00:40:20 +0200
commit60a4b5b27e924b13dd26148704c27e3209a04e0a (patch)
tree746d163c70b3034291643bbb74255e8ca9391ce0 /org.eclipse.jgit.archive/src
parent3ca663af0e5dc35344fb9d64be2633069a9acf4a (diff)
downloadjgit-60a4b5b27e924b13dd26148704c27e3209a04e0a.tar.gz
jgit-60a4b5b27e924b13dd26148704c27e3209a04e0a.zip
Fix javadoc of FormatActivator
Change-Id: I64b32f71df2964da4cb2de73b34bf7e455ab5b93 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.archive/src')
-rw-r--r--org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
index c8ea28eeff..a6a954f78c 100644
--- a/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
+++ b/org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java
@@ -58,10 +58,11 @@ import org.osgi.framework.BundleContext;
public class FormatActivator implements BundleActivator {
/**
* Registers all included archive formats by calling
- * {@link #start()}. This method is called by the OSGi framework
- * when the bundle is started.
+ * {@link ArchiveFormats#registerAll()}. This method is called by the OSGi
+ * framework when the bundle is started.
*
- * @param context unused
+ * @param context
+ * unused
*/
public void start(BundleContext context) {
ArchiveFormats.registerAll();
@@ -69,9 +70,10 @@ public class FormatActivator implements BundleActivator {
/**
* Cleans up after {@link #start(BundleContext)} by calling
- * {@link #stop()}.
+ * {@link ArchiveFormats#unregisterAll}.
*
- * @param context unused
+ * @param context
+ * unused
*/
public void stop(BundleContext context) {
ArchiveFormats.unregisterAll();