Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-06-12 13:45:02 +0000
committerThomas Watson2012-06-12 13:45:02 +0000
commit8a16ddda7bc1162f3ba14b75ddfd493565f9c962 (patch)
tree300b7abb55b31b1920473423d9ce7f2e6251d26a /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java
parent96ad9ed57eeb70811a2535e23c73a6913d0634df (diff)
downloadrt.equinox.framework-8a16ddda7bc1162f3ba14b75ddfd493565f9c962.tar.gz
rt.equinox.framework-8a16ddda7bc1162f3ba14b75ddfd493565f9c962.tar.xz
rt.equinox.framework-8a16ddda7bc1162f3ba14b75ddfd493565f9c962.zip
rename ModuleDataBase to ModuleDatabase
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java
index de29491c5..d4536983c 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/Module.java
@@ -571,14 +571,14 @@ public abstract class Module implements BundleReference, BundleStartLevel, Compa
return;
}
settings.add(Settings.AUTO_START);
- revisions.getContainer().moduleDataBase.persistSettings(settings, this);
+ revisions.getContainer().moduleDatabase.persistSettings(settings, this);
}
private void persistStopOptions(StopOptions... options) {
if (StopOptions.TRANSIENT.isContained(options))
return;
settings.clear();
- revisions.getContainer().moduleDataBase.persistSettings(settings, this);
+ revisions.getContainer().moduleDatabase.persistSettings(settings, this);
}
/**

Back to the top