diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-11-24 19:46:17 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2009-11-24 19:46:17 +0000 |
commit | ff0cd7ecd64b569c2b569cd6d0b98a013040db73 (patch) | |
tree | 89bf993f450f75e6eb93fb8042db9137c66f52b8 /src/com/vaadin/ui/Table.java | |
parent | 86d6694f1f1b429b879bd5d01dc83976ca308926 (diff) | |
download | vaadin-framework-ff0cd7ecd64b569c2b569cd6d0b98a013040db73.tar.gz vaadin-framework-ff0cd7ecd64b569c2b569cd6d0b98a013040db73.zip |
Fixes #3020
svn changeset:9989/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/ui/Table.java')
-rw-r--r-- | src/com/vaadin/ui/Table.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/com/vaadin/ui/Table.java b/src/com/vaadin/ui/Table.java index 99e7cec3de..eb669bc786 100644 --- a/src/com/vaadin/ui/Table.java +++ b/src/com/vaadin/ui/Table.java @@ -3187,17 +3187,6 @@ public class Table extends AbstractSelect implements Action.Container, } } - /* - * Override abstract fields to string method to avoid non-informative null's - * in debugger - */ - @Override - public String toString() { - return "Table:" + getContainerPropertyIds() + ", rows " - + getContainerDataSource().size() + " ,value:" - + super.toString(); - } - /** * Used to create "generated columns"; columns that exist only in the Table, * not in the underlying Container. Implement this interface and pass it to |