summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorSun Zhe <31067185+ZheSun88@users.noreply.github.com>2018-10-12 16:04:24 +0300
committerGitHub <noreply@github.com>2018-10-12 16:04:24 +0300
commit5c7c28a3a6e30a103fe5189d36df879e2eb24b14 (patch)
tree24903f28d71be72e2f99d4fe055e08abb5dd2169 /server
parent4e5cf07e6c8c94c12ef9d8b274c0c54b5e0fe423 (diff)
downloadvaadin-framework-5c7c28a3a6e30a103fe5189d36df879e2eb24b14.tar.gz
vaadin-framework-5c7c28a3a6e30a103fe5189d36df879e2eb24b14.zip
Revert change to fix issue on removing Grid with components (#11224)
* Test case for removing Grid with components * This reverts commit b2745dc14f17b510df7321ab3f6285ed317da3b3. Add test case to address the issue with removing gird with components; Current situation: the grid cannot be removed and client-side throw an error. fixes: Revert the corresponding change, as it didn't address any issue which was fixed.
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java2
-rw-r--r--server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java2
2 files changed, 2 insertions, 2 deletions
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 2e98230a6f..ade56edd4d 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 11bef73efa..9b1e74512e 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
*/