Explorar el Código

Remove non working setHeight methods from Tree (#9631)

Fixes #9629
tags/8.1.0.rc2
Jonni Nakari hace 6 años
padre
commit
ca6d6110fb
Se han modificado 1 ficheros con 0 adiciones y 27 borrados
  1. 0
    27
      server/src/main/java/com/vaadin/ui/Tree.java

+ 0
- 27
server/src/main/java/com/vaadin/ui/Tree.java Ver fichero

@@ -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);

Cargando…
Cancelar
Guardar