Browse Source

fixed retriever cache putting

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2759 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 16 years ago
parent
commit
195667d8eb
  1. 4
      org.springframework.context/src/main/java/org/springframework/context/event/AbstractApplicationEventMulticaster.java

4
org.springframework.context/src/main/java/org/springframework/context/event/AbstractApplicationEventMulticaster.java

@ -151,9 +151,9 @@ public abstract class AbstractApplicationEventMulticaster implements Application @@ -151,9 +151,9 @@ public abstract class AbstractApplicationEventMulticaster implements Application
allListeners.add(listener);
}
}
OrderComparator.sort(allListeners);
this.retrieverCache.put(cacheKey, retriever);
}
OrderComparator.sort(allListeners);
this.retrieverCache.put(cacheKey, retriever);
}
return allListeners;
}

Loading…
Cancel
Save