]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update since tags for 8.1.0.alpha2 (#8917) 8.1.0.alpha2
authorHenri Sara <henri.sara@gmail.com>
Thu, 23 Mar 2017 09:44:57 +0000 (11:44 +0200)
committerPekka Hyvönen <pekka@vaadin.com>
Thu, 23 Mar 2017 09:44:57 +0000 (11:44 +0200)
* Update since tags for 8.1.0.alpha2

server/src/main/java/com/vaadin/data/provider/HierarchyMapper.java
server/src/main/java/com/vaadin/ui/UI.java

index 7f423b39c97727d87116f0d113be51a99ab0c7f5..040be6cf2fcc86d2274cf89eff6d92b978ffc893 100644 (file)
@@ -38,7 +38,7 @@ import java.util.stream.Stream;
  * anything.
  *
  * @author Vaadin Ltd
- * @since
+ * @since 8.1
  */
 class HierarchyMapper implements Serializable {
 
index 31de66c558d7af9f46b97454a4bc722cbc2113af..536b2603ddb7e9f00b4e08445640525d83842c7e 100644 (file)
@@ -1812,25 +1812,25 @@ public abstract class UI extends AbstractSingleComponentContainer
      * Sets the drag source of an active HTML5 drag event.
      *
      * @param extension
-     *         Extension of the drag source component.
+     *            Extension of the drag source component.
      * @see DragSourceExtension
-     * @since
+     * @since 8.1
      */
     public void setActiveDragSource(
             DragSourceExtension<? extends AbstractComponent> extension) {
-        this.activeDragSource = extension;
+        activeDragSource = extension;
     }
 
     /**
      * Gets the drag source of an active HTML5 drag event.
      *
      * @return Extension of the drag source component if the drag event is
-     * active and originated from this UI, {@literal null} otherwise.
+     *         active and originated from this UI, {@literal null} otherwise.
      * @see DragSourceExtension
-     * @since
+     * @since 8.1
      */
     public DragSourceExtension<? extends AbstractComponent> getActiveDragSource() {
-        return this.activeDragSource;
+        return activeDragSource;
     }
 
     /**