]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add missing 8.13 since tag (#12236)
authorZhe Sun <31067185+ZheSun88@users.noreply.github.com>
Thu, 11 Mar 2021 14:42:18 +0000 (16:42 +0200)
committerGitHub <noreply@github.com>
Thu, 11 Mar 2021 14:42:18 +0000 (16:42 +0200)
client/src/main/java/com/vaadin/client/LayoutManager.java
client/src/main/java/com/vaadin/client/widget/escalator/RowContainer.java
client/src/main/java/com/vaadin/client/widgets/Grid.java
server/src/main/java/com/vaadin/ui/Grid.java
server/src/main/java/com/vaadin/ui/UI.java
shared/src/main/java/com/vaadin/shared/ui/ui/UIState.java
uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java

index e2e8582f78afb5d0fa118fddadf9018ebae9e4ec..de26efa56a24cfc59a4bef36936cc446f52c8406 100644 (file)
@@ -98,7 +98,7 @@ public class LayoutManager {
      * @param thoroughSizeCheck
      *            {@code true} if thorough size check enabled, {@code false} if
      *            not
-     * @since
+     * @since 8.13
      */
     public void setThoroughSizeChck(boolean thoroughSizeCheck) {
         this.thoroughSizeCheck = thoroughSizeCheck;
index fc82bd87d7654e459704676c0a1b51ebf509076a..f887c017b39c1b7be93386bc2d3d972ff5c086bf 100644 (file)
@@ -89,7 +89,7 @@ public interface RowContainer {
          * Updates the spacer corresponding with the given rowIndex to currently
          * provided contents.
          *
-         * @since
+         * @since 8.13
          * @param rowIndex
          *            the row index for the spacer in need of updating
          */
index d2b3860ef663b4021c5b7b5b079ebd83b0e993c8..c5fe79d2604e8fe97eba475ae55421b36e254f5b 100755 (executable)
@@ -9664,7 +9664,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
     /**
      * Reset the details row with current contents.
      *
-     * @since
+     * @since 8.13
      * @param rowIndex
      *            the index of the row for which details should be reset
      */
index f84dbd40cbdae55d4530abab911c5a9722121cc1..7ffd33343020eb3b76073d501a610d426f55ad0c 100644 (file)
@@ -1267,7 +1267,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
          *
          * @return the presentation provider function
          *
-         * @since
+         * @since 8.13
          */
         public ValueProvider<V, ?> getPresentationProvider() {
             return presentationProvider;
index 547b8a8f04cb82d69cb71d60c63d045c0f4d40d5..5013aa513766bf5c828f1744b6be2fa4dfdf29af 100644 (file)
@@ -2031,7 +2031,7 @@ public abstract class UI extends AbstractSingleComponentContainer
      * By default, the thorough size check is enabled.
      *
      * @return {@code true} if thorough size check enabled, {@code false} if not
-     * @since
+     * @since 8.13
      */
     public boolean isUsingThoroughSizeCheck() {
         return getState(false).thoroughSizeCheck;
@@ -2049,7 +2049,7 @@ public abstract class UI extends AbstractSingleComponentContainer
      * @param thoroughSizeCheck
      *            {@code true} if thorough size check enabled, {@code false} if
      *            not
-     * @since
+     * @since 8.13
      */
     public void setUsingThoroughSizeCheck(boolean thoroughSizeCheck) {
         getState().thoroughSizeCheck = thoroughSizeCheck;
index 412a5f2c6370964feb4c125d1520c0a4a2c07f51..39d9ebfa7dfc4a1ffaf0cccde8b4ea499539076b 100644 (file)
@@ -98,7 +98,7 @@ public class UIState extends AbstractSingleComponentContainerState {
      * transform animation is ongoing. This can happen e.g. when a PopupView is
      * opened.
      *
-     * @since
+     * @since 8.13
      */
     public boolean thoroughSizeCheck = true;
 
index 4f90112990dcc4e90bd21ba96f0205368bf697b3..87b428a15ad5c7ac994a833b3e355633f4c48f0b 100644 (file)
@@ -25,7 +25,7 @@ public class VerifyBrowserVersionTest extends MultiBrowserTest {
             // Chrome version does not necessarily match the desired version
             // because of auto updates...
             browserIdentifier = getExpectedUserAgentString(
-                    getDesiredCapabilities()) + "88";
+                    getDesiredCapabilities()) + "87";
         } else if (BrowserUtil.isFirefox(getDesiredCapabilities())) {
             browserIdentifier = getExpectedUserAgentString(
                     getDesiredCapabilities()) + "81";