Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2009-10-14 14:15:08 +0000
committerThomas Watson2009-10-14 14:15:08 +0000
commit1f567bcafe3e96cecf0dec0682117186cdb0c6b9 (patch)
tree0ac9da2362f090f728fc819e58912c1ff363b907 /bundles/org.eclipse.osgi/defaultAdaptor
parent33f622c8ad832aecd3f95b4399dcac1e4b99e987 (diff)
downloadrt.equinox.framework-1f567bcafe3e96cecf0dec0682117186cdb0c6b9.tar.gz
rt.equinox.framework-1f567bcafe3e96cecf0dec0682117186cdb0c6b9.tar.xz
rt.equinox.framework-1f567bcafe3e96cecf0dec0682117186cdb0c6b9.zip
Bug 291564 !MESSAGE Unable to clean storage area: C:\eclipse\drops\I20091006-0800
Diffstat (limited to 'bundles/org.eclipse.osgi/defaultAdaptor')
-rw-r--r--bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/internal/baseadaptor/BaseStorage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/internal/baseadaptor/BaseStorage.java b/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/internal/baseadaptor/BaseStorage.java
index 34e570880..0e73dfb20 100644
--- a/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/internal/baseadaptor/BaseStorage.java
+++ b/bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/internal/baseadaptor/BaseStorage.java
@@ -918,7 +918,7 @@ public class BaseStorage implements SynchronousBundleListener {
private void cleanOSGiCache() {
File osgiConfig = LocationManager.getOSGiConfigurationDir();
if (!AdaptorUtil.rm(osgiConfig))
- adaptor.getFrameworkLog().log(new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, "Unable to clean storage area: " + osgiConfig.getAbsolutePath(), 0, null, null)); //$NON-NLS-1$
+ adaptor.getFrameworkLog().log(new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, "The -clean (osgi.clean) option was not successful. Unable to clean the storage area: " + osgiConfig.getAbsolutePath(), 0, null, null)); //$NON-NLS-1$
}

Back to the top