aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/ui/TreeGrid.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/TreeGrid.java')
-rw-r--r--server/src/main/java/com/vaadin/ui/TreeGrid.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/main/java/com/vaadin/ui/TreeGrid.java b/server/src/main/java/com/vaadin/ui/TreeGrid.java
index bb4c5ec0cd..b9e9508e24 100644
--- a/server/src/main/java/com/vaadin/ui/TreeGrid.java
+++ b/server/src/main/java/com/vaadin/ui/TreeGrid.java
@@ -359,7 +359,7 @@ public class TreeGrid<T> extends Grid<T>
* the items to expand recursively
* @param depth
* the maximum depth of recursion
- * @since
+ * @since 8.4
*/
public void expandRecursively(Collection<T> items, int depth) {
expandRecursively(items.stream(), depth);
@@ -380,7 +380,7 @@ public class TreeGrid<T> extends Grid<T>
* the items to expand recursively
* @param depth
* the maximum depth of recursion
- * @since
+ * @since 8.4
*/
public void expandRecursively(Stream<T> items, int depth) {
if (depth < 0) {
@@ -447,7 +447,7 @@ public class TreeGrid<T> extends Grid<T>
* the items to collapse recursively
* @param depth
* the maximum depth of recursion
- * @since
+ * @since 8.4
*/
public void collapseRecursively(Collection<T> items, int depth) {
collapseRecursively(items.stream(), depth);
@@ -468,7 +468,7 @@ public class TreeGrid<T> extends Grid<T>
* the items to collapse recursively
* @param depth
* the maximum depth of recursion
- * @since
+ * @since 8.4
*/
public void collapseRecursively(Stream<T> items, int depth) {
if (depth < 0) {