]> source.dussan.org Git - jgit.git/commitdiff
Fix javadoc of FormatActivator 64/13464/3
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 1 Jun 2013 21:54:24 +0000 (23:54 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Sat, 1 Jun 2013 22:40:20 +0000 (00:40 +0200)
Change-Id: I64b32f71df2964da4cb2de73b34bf7e455ab5b93
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java

index c8ea28eeff1bcfb69d2dda0c01bb6751bbebf4fd..a6a954f78cbcfc99ae86c6f83cb337d57c6922d8 100644 (file)
@@ -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();