Browse Source

Remove non working setHeight methods from Tree (#9631)

Fixes #9629
tags/8.1.0.rc2
Jonni Nakari 6 years ago
parent
commit
ca6d6110fb
1 changed files with 0 additions and 27 deletions
  1. 0
    27
      server/src/main/java/com/vaadin/ui/Tree.java

+ 0
- 27
server/src/main/java/com/vaadin/ui/Tree.java View File

@@ -668,33 +668,6 @@ public class Tree<T> extends Composite
}
}

/**
* @deprecated This component's height is always set to be undefined.
* Calling this method will have no effect.
*/
@Override
@Deprecated
public void setHeight(String height) {
}

/**
* @deprecated This component's height is always set to be undefined.
* Calling this method will have no effect.
*/
@Override
@Deprecated
public void setHeight(float height, Unit unit) {
}

/**
* @deprecated This component's height is always set to be undefined.
* Calling this method will have no effect.
*/
@Override
@Deprecated
public void setHeightUndefined() {
}

@Override
public void setCaption(String caption) {
treeGrid.setCaption(caption);

Loading…
Cancel
Save