diff options
author | neher <neher@users.noreply.github.com> | 2018-07-19 10:12:20 +0200 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-07-19 11:12:20 +0300 |
commit | ebb5cb36a381d2ef60ade8bb08d94a9d6f14872f (patch) | |
tree | 9a7e435ce1b90b1e7e31e3088b9c29cacb2ce9d7 | |
parent | 45cf12ec701f9b89dce8d60d97a407f03894fd52 (diff) | |
download | vaadin-framework-ebb5cb36a381d2ef60ade8bb08d94a9d6f14872f.tar.gz vaadin-framework-ebb5cb36a381d2ef60ade8bb08d94a9d6f14872f.zip |
Fixed typo
-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 |