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 c8ea28eef..a6a954f78 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 @@ 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 void start(BundleContext context) { /** * 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();