diff options
author | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2018-11-06 14:52:28 +0200 |
---|---|---|
committer | Ilia Motornyi <elijah.mot@gmail.com> | 2018-11-06 14:52:28 +0200 |
commit | b20a9a83184c6ef37173e2d9df1206eea5ceacf9 (patch) | |
tree | 0d57d1ce45021d37943e911e060fd0c64fc8958b /server | |
parent | 023ec7f48c5ca59d3a995d360500dda6ce9ef32f (diff) | |
download | vaadin-framework-b20a9a83184c6ef37173e2d9df1206eea5ceacf9.tar.gz vaadin-framework-b20a9a83184c6ef37173e2d9df1206eea5ceacf9.zip |
Code formatting (#11278)
Diffstat (limited to 'server')
3 files changed, 4 insertions, 4 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java index c4d6c95c01..2766f2cb88 100644 --- a/server/src/main/java/com/vaadin/ui/Grid.java +++ b/server/src/main/java/com/vaadin/ui/Grid.java @@ -3314,8 +3314,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents, * in this grid. Returning null from the generator results in no custom * style name being set. * - * Note: The style generator is applied only to the body cells, not to - * the Editor. + * Note: The style generator is applied only to the body cells, not to the + * Editor. * * @see StyleGenerator * diff --git a/server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java b/server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java index ade56edd4d..2e98230a6f 100644 --- a/server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java +++ b/server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java @@ -84,7 +84,7 @@ public class GridMultiSelect<T> implements MultiSelect<T> { /** * Selects the given item. If another item was already selected, that item * is deselected. - * + * * @param item * the item to select */ diff --git a/server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java b/server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java index 9b1e74512e..11bef73efa 100644 --- a/server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java +++ b/server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java @@ -211,7 +211,7 @@ public class GridSingleSelect<T> implements SingleSelect<T> { /** * Selects the given item. If another item was already selected, that item * is deselected. - * + * * @param item * the item to select */ |