Sfoglia il codice sorgente

Remove non working setHeight methods from Tree (#9631)

Fixes #9629
tags/8.1.0.rc2
Jonni Nakari 6 anni fa
parent
commit
ca6d6110fb
1 ha cambiato i file con 0 aggiunte e 27 eliminazioni
  1. 0
    27
      server/src/main/java/com/vaadin/ui/Tree.java

+ 0
- 27
server/src/main/java/com/vaadin/ui/Tree.java Vedi 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…
Annulla
Salva