diff options
author | Ilia Motornyi <elmot@vaadin.com> | 2018-07-19 14:46:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 14:46:25 +0300 |
commit | 504d4995786e8909f609be09897325bd16ffebe5 (patch) | |
tree | 1b5355374bf0cc3c519c2101b35eb343a9c8c1ba /compatibility-server/src | |
parent | 10278f866e461c687f6d593ac8ec02c65e150da8 (diff) | |
download | vaadin-framework-504d4995786e8909f609be09897325bd16ffebe5.tar.gz vaadin-framework-504d4995786e8909f609be09897325bd16ffebe5.zip |
Fixed typo (#11072)
Diffstat (limited to 'compatibility-server/src')
-rw-r--r-- | compatibility-server/src/main/java/com/vaadin/v7/data/util/AbstractInMemoryContainer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/data/util/AbstractInMemoryContainer.java b/compatibility-server/src/main/java/com/vaadin/v7/data/util/AbstractInMemoryContainer.java index 3af2f54291..64624424df 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/data/util/AbstractInMemoryContainer.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/data/util/AbstractInMemoryContainer.java @@ -441,7 +441,7 @@ public abstract class AbstractInMemoryContainer<ITEMIDTYPE, PROPERTYIDCLASS, ITE public boolean removeContainerProperty(Object propertyId) throws UnsupportedOperationException { throw new UnsupportedOperationException( - "Removing container properties not supported. Override the addContainerProperty() method if required."); + "Removing container properties not supported. Override the removeContainerProperty() method if required."); } // ItemSetChangeNotifier |