Browse Source

Fix javadoc of FormatActivator

Change-Id: I64b32f71df2964da4cb2de73b34bf7e455ab5b93
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.1.0.201309270735-rc1
Matthias Sohn 11 years ago
parent
commit
60a4b5b27e

+ 7
- 5
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/FormatActivator.java View 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();

Loading…
Cancel
Save