Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-12-05 14:06:02 +0000
committerThomas Watson2013-12-05 14:06:02 +0000
commit34dd34042093037aa0e72bcfc4a2cb1a9e316f36 (patch)
tree661f5f9083f169855e7368817818b5788ec45a6c
parentbfae5de40933cd07593087ddcded3fe21cb436c1 (diff)
downloadrt.equinox.framework-34dd34042093037aa0e72bcfc4a2cb1a9e316f36.tar.gz
rt.equinox.framework-34dd34042093037aa0e72bcfc4a2cb1a9e316f36.tar.xz
rt.equinox.framework-34dd34042093037aa0e72bcfc4a2cb1a9e316f36.zip
Bug 421706 - Can't start Eclipse M3 after installing "everything"
- Need to bump version of persistent data to ensure equinox.fragment capabilities are generated for all fragments.
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
index b6307553d..862ebcf99 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
@@ -48,7 +48,7 @@ import org.osgi.framework.wiring.BundleRevision;
import org.osgi.framework.wiring.BundleWiring;
public class Storage {
- public static final int VERSION = 2;
+ public static final int VERSION = 3;
public static final String BUNDLE_DATA_DIR = "data"; //$NON-NLS-1$
public static final String BUNDLE_FILE_NAME = "bundleFile"; //$NON-NLS-1$
public static final String FRAMEWORK_INFO = "framework.info"; //$NON-NLS-1$

Back to the top