diff options
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java b/theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java deleted file mode 100644 index 3dab4df773..0000000000 --- a/theme-compiler/src/com/vaadin/sass/tree/FontFaceNode.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.vaadin.sass.tree; - -public class FontFaceNode extends Node { - - @Override - public String toString() { - StringBuilder builder = new StringBuilder(); - builder.append("@font-face {\n"); - - for (final Node child : children) { - builder.append("\t" + child.toString() + "\n"); - } - - builder.append("}"); - return builder.toString(); - } - -} |