diff options
author | Henrik Paul <henrik@vaadin.com> | 2014-10-15 09:21:56 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-10-28 08:53:30 +0000 |
commit | 7540efb2c5f42ede2af51dadba2382c21e075203 (patch) | |
tree | 34eb4387cdce42e0c41bca5fbbc7fae872b5c7d8 | |
parent | fb5f968e29e7635d565aeb048cbe836409de0a66 (diff) | |
download | vaadin-framework-7540efb2c5f42ede2af51dadba2382c21e075203.tar.gz vaadin-framework-7540efb2c5f42ede2af51dadba2382c21e075203.zip |
Removes getter for DataSource in SortEvent (#13334)
Exposing this is very weird for a sort event. Nothing uses it atm, and nothing should ever.
Change-Id: Iabfc0083b26e8b8aa2ca68cb636ca1442aab246d
-rw-r--r-- | client/src/com/vaadin/client/ui/grid/sort/SortEvent.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/client/src/com/vaadin/client/ui/grid/sort/SortEvent.java b/client/src/com/vaadin/client/ui/grid/sort/SortEvent.java index 97566d944b..b0e1d27539 100644 --- a/client/src/com/vaadin/client/ui/grid/sort/SortEvent.java +++ b/client/src/com/vaadin/client/ui/grid/sort/SortEvent.java @@ -90,15 +90,6 @@ public class SortEvent<T> extends GwtEvent<SortEventHandler<?>> { } /** - * Access the data source of the Grid that fired this event - * - * @return a data source instance - */ - public DataSource<T> getDataSource() { - return grid.getDataSource(); - } - - /** * Get the sort ordering that is to be applied to the Grid * * @return a list of sort order objects |