diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-08-16 13:36:44 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-08-16 13:36:44 +0300 |
commit | 4cd7965fda54a124ea01066b5e9f6d9ee124ab1b (patch) | |
tree | 58d8f4adfad3b276d5760a2580516d94b7eb45d6 /shared | |
parent | 0f64ae445bae3c6e7a0d7fee1b6db9717e3da59a (diff) | |
download | vaadin-framework-4cd7965fda54a124ea01066b5e9f6d9ee124ab1b.tar.gz vaadin-framework-4cd7965fda54a124ea01066b5e9f6d9ee124ab1b.zip |
Use correct version in since for Grid row height methods (#9824)
Related to #9425.
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java index f2ebd903b2..9a8fb53105 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java @@ -150,7 +150,7 @@ public class GridState extends AbstractSingleSelectState { * Explicit body row height in pixels for grid rows, or -1 to calculate * automatically based on the theme. * - * @since 8.1.2 + * @since 8.2 */ public double bodyRowHeight = -1; @@ -158,7 +158,7 @@ public class GridState extends AbstractSingleSelectState { * Explicit body row height in pixels for grid rows, or -1 to calculate * automatically based on the theme. * - * @since 8.1.2 + * @since 8.2 */ public double headerRowHeight = -1; @@ -166,7 +166,7 @@ public class GridState extends AbstractSingleSelectState { * Explicit body row height in pixels for grid rows, or -1 to calculate * automatically based on the theme. * - * @since 8.1.2 + * @since 8.2 */ public double footerRowHeight = -1; } |