diff options
author | Marc Englund <marc@vaadin.com> | 2012-10-04 16:15:53 +0300 |
---|---|---|
committer | Marc Englund <marc@vaadin.com> | 2012-10-04 16:15:53 +0300 |
commit | 879b0f9c2168c2f7a5f2d9e4f575e04f081e65c6 (patch) | |
tree | e2166d73bca0373b6147e3ff2a5719a475cae0fd /theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java | |
parent | 43256e1e897313b4a323f6f231a699c108b8e0a7 (diff) | |
download | vaadin-framework-879b0f9c2168c2f7a5f2d9e4f575e04f081e65c6.tar.gz vaadin-framework-879b0f9c2168c2f7a5f2d9e4f575e04f081e65c6.zip |
Sass mixin cleanup (author: seba)
Change-Id: Ie462d5e213d4e81430143aa9d0708fac6b8d77d4
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java b/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java index a0e9db7551..4acbc8d4d6 100644 --- a/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java +++ b/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandlerImpl.java @@ -214,12 +214,6 @@ public class SCSSDocumentHandlerImpl implements SCSSDocumentHandler { } @Override - public MixinDefNode mixinDirective(String name, String args, String body) { - MixinDefNode node = new MixinDefNode(name, args, body); - return node; - } - - @Override public void startNestedProperties(String name) { NestPropertiesNode node = new NestPropertiesNode(name); nodeStack.peek().appendChild(node); |