diff options
author | Artur Signell <artur@vaadin.com> | 2013-03-14 18:18:53 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-03-14 18:18:53 +0200 |
commit | b202c155c302fce17ce51706197920637179aef7 (patch) | |
tree | bf1d4fc44b2dcf1031befa112ed91e57b4c4b754 /client/src | |
parent | 26d0d59e7ec464d48cb19524599cd067a547d039 (diff) | |
download | vaadin-framework-b202c155c302fce17ce51706197920637179aef7.tar.gz vaadin-framework-b202c155c302fce17ce51706197920637179aef7.zip |
Remove unnecessary theme name sanitation (#10708)
Change-Id: Ib28d4bbf7602017e371c4597733f1558cdb0b796
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/com/vaadin/client/ui/ui/UIConnector.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/ui/ui/UIConnector.java b/client/src/com/vaadin/client/ui/ui/UIConnector.java index 7f3c7010dd..c8210e3a09 100644 --- a/client/src/com/vaadin/client/ui/ui/UIConnector.java +++ b/client/src/com/vaadin/client/ui/ui/UIConnector.java @@ -433,8 +433,6 @@ public class UIConnector extends AbstractSingleComponentContainerConnector String themeName = applicationConnection.getConfiguration() .getThemeName(); - // Remove chars that are not suitable for style names - themeName = themeName.replaceAll("[^a-zA-Z0-9]", ""); root.addStyleName(themeName); root.add(getWidget()); |