diff options
author | Leif Åstrand <leif@vaadin.com> | 2011-11-09 16:48:12 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2011-11-09 16:48:54 +0200 |
commit | 7f57fc6b3df5cd1498562acd515833f654b4618b (patch) | |
tree | 75f149d164d4f65e71a28379453722392f4ac99d /build/buildhelpers/com/vaadin | |
parent | 4a0cde8a8101fa62a2976f225c78deb1eaef27f8 (diff) | |
download | vaadin-framework-7f57fc6b3df5cd1498562acd515833f654b4618b.tar.gz vaadin-framework-7f57fc6b3df5cd1498562acd515833f654b4618b.zip |
#7912 Remove support for IE6
Diffstat (limited to 'build/buildhelpers/com/vaadin')
-rw-r--r-- | build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java index 15d2acf6e9..0f7ec4a14b 100644 --- a/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java +++ b/build/buildhelpers/com/vaadin/buildhelpers/CompileDefaultTheme.java @@ -224,9 +224,8 @@ public class CompileDefaultTheme { private static void createSprites(String themeName) throws FileNotFoundException, IOException { String[] parameters = new String[] { "--sprite-png-depth", "AUTO", - "--sprite-png-ie6", "--css-file-suffix", "-sprite", - "--css-file-encoding", "UTF-8", "--root-dir-path", - THEME_DIR + themeName, "--log-level", "WARN" }; + "--css-file-suffix", "-sprite", "--css-file-encoding", "UTF-8", + "--root-dir-path", THEME_DIR + themeName, "--log-level", "WARN" }; org.carrot2.labs.smartsprites.SmartSprites.main(parameters); |