summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSun Zhe <31067185+ZheSun88@users.noreply.github.com>2019-03-11 16:10:00 +0200
committerGitHub <noreply@github.com>2019-03-11 16:10:00 +0200
commit42c805a5faaa0b9c6442479d99489b7d2c682089 (patch)
tree6f535faf06a6a11ee8fa1d09f5951eecbb5f87cd
parenta996b95422174ccef1a212a33fd25fa3c7c66fae (diff)
downloadvaadin-framework-42c805a5faaa0b9c6442479d99489b7d2c682089.tar.gz
vaadin-framework-42c805a5faaa0b9c6442479d99489b7d2c682089.zip
Remove wrong version and add missing since (#11476)
-rw-r--r--server/src/main/java/com/vaadin/ui/Grid.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java
index 402c93f36d..328e86bb8a 100644
--- a/server/src/main/java/com/vaadin/ui/Grid.java
+++ b/server/src/main/java/com/vaadin/ui/Grid.java
@@ -1030,7 +1030,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* @param <P>
* the presentation type
*
- * @since 8.7.0
+ * @since
*/
protected <P> Column(ValueProvider<T, V> valueProvider,
ValueProvider<V, P> presentationProvider,
@@ -2804,6 +2804,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* @param nestedNullBehavior
* the behavior when
* @return the newly added column, not <code>null</code>
+ *
+ * @since
*/
public Column<T, ?> addColumn(String propertyName,
AbstractRenderer<? super T, ?> renderer,
@@ -2999,7 +3001,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
* @param <P>
* the column presentation type
*
- * @since 8.7.0
+ * @since
*/
private <V, P> Column<T, V> createColumn(ValueProvider<T, V> valueProvider,
ValueProvider<V, P> presentationProvider,