This is an automated email from the ASF dual-hosted git repository.
tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/deltaspike.git
The following commit(s) were added to refs/heads/master by this push:
new 421e2f2 [perf] fixed initialization
421e2f2 is described below
commit 421e2f2002b352660c414ab8100611be6a560055
Author: Thomas Andraschko <[email protected]>
AuthorDate: Wed May 22 13:12:20 2019 +0200
[perf] fixed initialization
---
.../jsf/impl/component/window/DisableClientWindowHtmlRenderer.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/deltaspike/modules/jsf/impl/src/main/java/org/apache/deltaspike/jsf/impl/component/window/DisableClientWindowHtmlRenderer.java
b/deltaspike/modules/jsf/impl/src/main/java/org/apache/deltaspike/jsf/impl/component/window/DisableClientWindowHtmlRenderer.java
index 86901e8..8257652 100644
---
a/deltaspike/modules/jsf/impl/src/main/java/org/apache/deltaspike/jsf/impl/component/window/DisableClientWindowHtmlRenderer.java
+++
b/deltaspike/modules/jsf/impl/src/main/java/org/apache/deltaspike/jsf/impl/component/window/DisableClientWindowHtmlRenderer.java
@@ -99,6 +99,8 @@ public class DisableClientWindowHtmlRenderer extends Renderer
{
clientWindow =
BeanProvider.getContextualReference(ClientWindow.class);
jsfModuleConfig =
BeanProvider.getContextualReference(JsfModuleConfig.class);
+
+ this.initialized = true;
}
}
}