diff options
Diffstat (limited to 'build/buildhelpers')
-rw-r--r-- | build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java index 457905fe21..63bae7f228 100644 --- a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java +++ b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java @@ -21,7 +21,7 @@ public class CompileDefaultTheme { private static final String THEME_DIR = "./WebContent/VAADIN/themes/"; private static final String BASE = "base"; - private static final String ITMILL5 = "itmill5"; + private static final String RUNO = "runo"; private static final String REINDEER = "reindeer"; /** @@ -30,7 +30,7 @@ public class CompileDefaultTheme { */ public static void main(String[] args) throws IOException { combineTheme(new String[] { BASE }, false); - combineTheme(new String[] { BASE, ITMILL5 }, false); + combineTheme(new String[] { BASE, RUNO }, false); combineTheme(new String[] { BASE, REINDEER }, true); } |