Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-11-07 22:08:10 +0000
committerThomas Watson2014-11-07 22:08:10 +0000
commitb206fb1f0cb0104d77a6ec51e8a21f9703b2cb0a (patch)
treefc89e5a8c5308c09d9e7e8a5dece426e6161267e /bundles/org.eclipse.osgi
parentfca81ff0e9de67b44d64e74849a05478a808e66d (diff)
downloadrt.equinox.framework-b206fb1f0cb0104d77a6ec51e8a21f9703b2cb0a.tar.gz
rt.equinox.framework-b206fb1f0cb0104d77a6ec51e8a21f9703b2cb0a.tar.xz
rt.equinox.framework-b206fb1f0cb0104d77a6ec51e8a21f9703b2cb0a.zip
Bug 449779 - Deadlock within the OSGi framework
- Fix javadoc to clarify null can be used
Diffstat (limited to 'bundles/org.eclipse.osgi')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
index 080123363..5ac7a0f32 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleContainerAdaptor.java
@@ -234,7 +234,7 @@ public abstract class ModuleContainerAdaptor {
* module as well as for the module database. Care must be taken not to introduce
* deadlock.
* @param moduleWiring the module wiring being invalidated
- * @param current the current module loader associated with the wiring
+ * @param current the current module loader associated with the wiring, may be <code>null</code>.
*/
public void invalidateWiring(ModuleWiring moduleWiring, ModuleLoader current) {
// do nothing by default

Back to the top