diff options
author | Leif Åstrand <leif@vaadin.com> | 2015-03-20 15:50:51 +0200 |
---|---|---|
committer | Henrik Paul <henrik@vaadin.com> | 2015-03-20 14:57:29 +0000 |
commit | 2a711a6e8c393b7457b9fe029d30a782945c8076 (patch) | |
tree | 62e6fba8aabd8073140c3cd159b58c4fbd3ec524 /client/src | |
parent | aa1150e22ec2412ab999cb35cb6a0f98a32d7f88 (diff) | |
download | vaadin-framework-2a711a6e8c393b7457b9fe029d30a782945c8076.tar.gz vaadin-framework-2a711a6e8c393b7457b9fe029d30a782945c8076.zip |
Disable Sidebar API access since it will still be reworked (#17023)
Change-Id: I86900955497ba8e713f48457a7b858f50f9eeb73
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/com/vaadin/client/widgets/Grid.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 5091d8882f..3e201277a0 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -2901,7 +2901,7 @@ public class Grid<T> extends ResizeComposite implements * * @since */ - public static class Sidebar extends Composite { + private static class Sidebar extends Composite { private final ClickHandler openCloseButtonHandler = new ClickHandler() { @@ -7414,7 +7414,7 @@ public class Grid<T> extends ResizeComposite implements * @since * @return the sidebar widget for this grid */ - public Sidebar getSidebar() { + private Sidebar getSidebar() { return sidebar; } |