Browse Source

Add missing 8.13 since tag (#12236)

tags/8.13.0.alpha1
Zhe Sun 3 years ago
parent
commit
b773d40aba
No account linked to committer's email address

+ 1
- 1
client/src/main/java/com/vaadin/client/LayoutManager.java View 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;

+ 1
- 1
client/src/main/java/com/vaadin/client/widget/escalator/RowContainer.java View 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
*/

+ 1
- 1
client/src/main/java/com/vaadin/client/widgets/Grid.java View File

@@ -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
*/

+ 1
- 1
server/src/main/java/com/vaadin/ui/Grid.java View 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;

+ 2
- 2
server/src/main/java/com/vaadin/ui/UI.java View 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;

+ 1
- 1
shared/src/main/java/com/vaadin/shared/ui/ui/UIState.java View 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;


+ 1
- 1
uitest/src/test/java/com/vaadin/tests/VerifyBrowserVersionTest.java View 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";

Loading…
Cancel
Save