summaryrefslogtreecommitdiffstats
path: root/compatibility-server
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-10-25 11:02:42 +0300
committerPekka Hyvönen <pekka@vaadin.com>2016-12-09 09:39:00 +0200
commitcc64935345aa767e8cdb1f7b229b89060748e441 (patch)
tree8546781e81800ff331154e5f369ef47a1779a3b8 /compatibility-server
parent16c54b33c4c66edfc20f42b09e1726de67931c96 (diff)
downloadvaadin-framework-cc64935345aa767e8cdb1f7b229b89060748e441.tar.gz
vaadin-framework-cc64935345aa767e8cdb1f7b229b89060748e441.zip
Update Hierarchical container JavaDocs to match code (#5864)
Change-Id: I7a8520ef61ddc4dff66c326d61acbf7ccf0e76cd
Diffstat (limited to 'compatibility-server')
-rw-r--r--compatibility-server/src/main/java/com/vaadin/v7/data/Container.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/compatibility-server/src/main/java/com/vaadin/v7/data/Container.java b/compatibility-server/src/main/java/com/vaadin/v7/data/Container.java
index cffd246398..23b230f20d 100644
--- a/compatibility-server/src/main/java/com/vaadin/v7/data/Container.java
+++ b/compatibility-server/src/main/java/com/vaadin/v7/data/Container.java
@@ -768,9 +768,8 @@ public interface Container extends Serializable {
/**
* Tests if the Item specified with <code>itemId</code> is a root Item.
* The hierarchical container can have more than one root and must have
- * at least one unless it is empty. The
- * {@link #getParent(Object itemId)} method always returns
- * <code>null</code> for root Items.
+ * at least one unless it is empty. The {@link #getParent(Object itemId)}
+ * method always returns <code>null</code> for root Items.
*
* @param itemId
* ID of the Item whose root status is to be tested
@@ -1268,7 +1267,6 @@ public interface Container extends Serializable {
* {@link #removePropertySetChangeListener(PropertySetChangeListener)}
**/
@Deprecated
- public void removeListener(
- Container.PropertySetChangeListener listener);
+ public void removeListener(Container.PropertySetChangeListener listener);
}
}