diff options
author | denisanisimov <denis@vaadin.com> | 2014-01-13 13:11:45 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-01-14 11:04:45 +0000 |
commit | 034197d5a98cbf59153c824ed6f93d495c523854 (patch) | |
tree | 94cbbd6f5efbc86e78e1dcaf8e8174e035e1b074 /theme-compiler/src | |
parent | dd92ba5301f9db0b4139adcab6f667b26cd89b6d (diff) | |
download | vaadin-framework-034197d5a98cbf59153c824ed6f93d495c523854.tar.gz vaadin-framework-034197d5a98cbf59153c824ed6f93d495c523854.zip |
clone() method is removed from LexicalUnitImpl (#13182 ).
Change-Id: I8e32c3ab8b79e31b7fae309a3f475f6fe520bfcc
Diffstat (limited to 'theme-compiler/src')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java b/theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java index cfd428e094..e03cea8cfe 100644 --- a/theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java +++ b/theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java @@ -731,13 +731,6 @@ public class LexicalUnitImpl implements LexicalUnit, SCSSLexicalUnit, previous); } - @Override - public LexicalUnitImpl clone() { - LexicalUnitImpl cloned = new LexicalUnitImpl(type, line, column, prev); - cloned.replaceValue(this); - return cloned; - } - /** * Tries to return the value for this {@link LexicalUnitImpl} without * considering any related units. |