Olli Tietäväinen 2年前
コミット
2b2028e22f
コミッターのメールアドレスに関連付けられたアカウントが存在しません

+ 5
- 3
shared/src/main/java/com/vaadin/osgi/resources/impl/VaadinResourceTrackerComponent.java ファイルの表示

@@ -151,9 +151,11 @@ public class VaadinResourceTrackerComponent {
*/
@Activate
protected void activate(BundleContext context) {
vaadinSharedContext = context;
for (Delegate<?> registration : resourceToRegistration.values()) {
registration.register(vaadinSharedContext, vaadinService);
synchronized (resourceToRegistration) {
vaadinSharedContext = context;
for (Delegate<?> registration : resourceToRegistration.values()) {
registration.register(context, vaadinService);
}
}
}


読み込み中…
キャンセル
保存