aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
diff options
context:
space:
mode:
authorMarc Englund <marc@vaadin.com>2012-09-27 10:24:35 +0300
committerMarc Englund <marc@vaadin.com>2012-09-27 10:24:35 +0300
commit0cf6705e9a53c3c2b476a99cf7e6d048881b298c (patch)
treef133e60a5d30af43ecc87152df29c26ebdb05715 /theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
parentabea9d1ce0fdcad2e344cfa2417a09c29d903648 (diff)
downloadvaadin-framework-0cf6705e9a53c3c2b476a99cf7e6d048881b298c.tar.gz
vaadin-framework-0cf6705e9a53c3c2b476a99cf7e6d048881b298c.zip
Improves remove() for #9380
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java')
-rw-r--r--theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java b/theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
index 71c32a5c06..0e9f727c53 100644
--- a/theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
+++ b/theme-compiler/src/com/vaadin/sass/tree/ListModifyNode.java
@@ -2,9 +2,9 @@ package com.vaadin.sass.tree;
public interface ListModifyNode {
- public boolean isModifyingVariable();
+ public String getNewVariable();
- public String getVariable();
+ public String getModifyingList();
public VariableNode getModifiedList(VariableNode variableNode);