diff options
author | John Ahlroos <john@vaadin.com> | 2013-12-17 14:08:16 +0200 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2013-12-17 14:08:16 +0200 |
commit | 7e6322f9a8edb8332024fdb9b8cb77250ad756e2 (patch) | |
tree | 71080ec52bf987a48ac3771103c86327c9fd8668 /client | |
parent | 15865e1d19c5bb5335f03400eb44a8876b3ab7e7 (diff) | |
download | vaadin-framework-7e6322f9a8edb8332024fdb9b8cb77250ad756e2.tar.gz vaadin-framework-7e6322f9a8edb8332024fdb9b8cb77250ad756e2.zip |
Limit the visibility of ColumnGroupRow instance fields #12830
Change-Id: Id2bf2f200888c07bdf2b342223434d13d159192d
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/grid/ColumnGroupRow.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/ui/grid/ColumnGroupRow.java b/client/src/com/vaadin/client/ui/grid/ColumnGroupRow.java index 0ced616f3f..ebe4db508c 100644 --- a/client/src/com/vaadin/client/ui/grid/ColumnGroupRow.java +++ b/client/src/com/vaadin/client/ui/grid/ColumnGroupRow.java @@ -48,12 +48,12 @@ public class ColumnGroupRow<T> { /** * Is the header shown */ - public boolean headerVisible = true; + private boolean headerVisible = true; /** * Is the footer shown */ - public boolean footerVisible = false; + private boolean footerVisible = false; /** * Constructs a new column group row |