Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrkulp2005-07-20 22:57:42 +0000
committerrkulp2005-07-20 22:57:42 +0000
commitfde2f6595ba48626000f1ff29516bef560e0898b (patch)
tree6f3743b10bd515360e3b0eabb2dd05311d25ae6b /plugins/org.eclipse.jem.beaninfo
parent5cebe7cb122d260af0b9b22ba1f9f610dcae09a4 (diff)
downloadwebtools.javaee-fde2f6595ba48626000f1ff29516bef560e0898b.tar.gz
webtools.javaee-fde2f6595ba48626000f1ff29516bef560e0898b.tar.xz
webtools.javaee-fde2f6595ba48626000f1ff29516bef560e0898b.zip
Need to wait for registry termination because we could be deleting the
project and if the registry is still open it prevents the project from deleting.
Diffstat (limited to 'plugins/org.eclipse.jem.beaninfo')
-rw-r--r--plugins/org.eclipse.jem.beaninfo/beaninfo/org/eclipse/jem/internal/beaninfo/adapters/BeaninfoNature.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.jem.beaninfo/beaninfo/org/eclipse/jem/internal/beaninfo/adapters/BeaninfoNature.java b/plugins/org.eclipse.jem.beaninfo/beaninfo/org/eclipse/jem/internal/beaninfo/adapters/BeaninfoNature.java
index 5548bce61..6f6612786 100644
--- a/plugins/org.eclipse.jem.beaninfo/beaninfo/org/eclipse/jem/internal/beaninfo/adapters/BeaninfoNature.java
+++ b/plugins/org.eclipse.jem.beaninfo/beaninfo/org/eclipse/jem/internal/beaninfo/adapters/BeaninfoNature.java
@@ -11,7 +11,7 @@
package org.eclipse.jem.internal.beaninfo.adapters;
/*
* $RCSfile: BeaninfoNature.java,v $
- * $Revision: 1.33 $ $Date: 2005/06/30 16:23:58 $
+ * $Revision: 1.34 $ $Date: 2005/07/20 22:57:42 $
*/
import java.io.*;
@@ -272,7 +272,7 @@ public class BeaninfoNature implements IProjectNature {
fSynchronizer.stopSynchronizer(clearResults);
Init.cleanup(javaRSet, clearResults);
if (fRegistry != null)
- fRegistry.terminateRegistry();
+ fRegistry.terminateRegistry(true);
javaRSet = null;
fRegistry = null;

Back to the top