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.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2008-01-18 19:17:32 +0000
committerEike Stepper2008-01-18 19:17:32 +0000
commite7396df662bb5b466410ce590dae0ebb2943a5ae (patch)
tree0d214d98f5756b85497e76b3499e1097481a87c2 /plugins
parent6191c2058cb5b0f482a4fccf362378f3306ae1af (diff)
downloadcdo-e7396df662bb5b466410ce590dae0ebb2943a5ae.tar.gz
cdo-e7396df662bb5b466410ce590dae0ebb2943a5ae.tar.xz
cdo-e7396df662bb5b466410ce590dae0ebb2943a5ae.zip
[215688] Create save points
https://bugs.eclipse.org/bugs/show_bug.cgi?id=215688
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/collection/MultiMap.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/collection/MultiMap.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/collection/MultiMap.java
index 401ae5220f..09f6405bd8 100644
--- a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/collection/MultiMap.java
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/collection/MultiMap.java
@@ -244,7 +244,7 @@ public abstract class MultiMap<K, V> implements Map<K, V>
this.delegates = delegates;
}
- public List<Map<K, V>> getDelegates()
+ public synchronized List<Map<K, V>> getDelegates()
{
if (delegates == null)
{

Back to the top