Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2020-04-28 23:43:44 +0000
committerThomas Watson2020-04-28 23:44:30 +0000
commit15857fa80132b34246c62480198d3684b2a129d3 (patch)
tree4520bce3493d0a013b2866dc9272058fd6ff12a0 /bundles/org.eclipse.osgi/osgi/src
parentf5c8d65524882931ce1678b6e2e03ac71a6fd091 (diff)
downloadrt.equinox.framework-15857fa80132b34246c62480198d3684b2a129d3.tar.gz
rt.equinox.framework-15857fa80132b34246c62480198d3684b2a129d3.tar.xz
rt.equinox.framework-15857fa80132b34246c62480198d3684b2a129d3.zip
Bug 552573 - rename createBundleActivator to newBundleActivator
Change-Id: I76646b16bc7ef2efab34d0747143b1a2e6c01197 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
index 3ac13cb44..d0f56e270 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
@@ -91,5 +91,5 @@ public interface ModuleConnector {
* @return a new activator for this module connector or
* {@link Optional#empty() empty} if no activator is available
*/
- Optional<BundleActivator> createBundleActivator();
+ Optional<BundleActivator> newBundleActivator();
}

Back to the top