diff options
author | Leif Åstrand <leif@vaadin.com> | 2016-11-17 20:43:45 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2016-11-17 20:44:09 +0200 |
commit | 9d6baef98851d0cd5092581f954f9b3ee6908003 (patch) | |
tree | ca67293aa7350239a6dcd89c611e5b2537a66ac1 /server/src/main | |
parent | 49b766285f4e6cbc81e85847cc5a0078665f05ce (diff) | |
download | vaadin-framework-9d6baef98851d0cd5092581f954f9b3ee6908003.tar.gz vaadin-framework-9d6baef98851d0cd5092581f954f9b3ee6908003.zip |
Make ValoTheme subclassable
Change-Id: Ib8976949108888deac51a90eb775445f0b5cecf8
Diffstat (limited to 'server/src/main')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/themes/ValoTheme.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/ui/themes/ValoTheme.java b/server/src/main/java/com/vaadin/ui/themes/ValoTheme.java index 48fad1ce95..fd670a175b 100644 --- a/server/src/main/java/com/vaadin/ui/themes/ValoTheme.java +++ b/server/src/main/java/com/vaadin/ui/themes/ValoTheme.java @@ -1073,6 +1073,6 @@ public class ValoTheme { */ public static final String MENU_APPEAR_ON_HOVER = "valo-menu-hover"; - private ValoTheme() { + protected ValoTheme() { } } |