From 255b4e5075a6857f6dc875b600d4bdc2b91347ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sauli=20T=C3=A4hk=C3=A4p=C3=A4=C3=A4?= Date: Fri, 26 Sep 2014 08:44:29 +0300 Subject: [PATCH] Add @since to isWindowsPhone(). (#14425) Change-Id: Ia4c212ead39d7b71c56db586c0a8559935cae263 --- server/src/com/vaadin/server/WebBrowser.java | 1 + shared/src/com/vaadin/shared/VBrowserDetails.java | 1 + 2 files changed, 2 insertions(+) diff --git a/server/src/com/vaadin/server/WebBrowser.java b/server/src/com/vaadin/server/WebBrowser.java index 5ec4e6b19c..17ba6756b8 100644 --- a/server/src/com/vaadin/server/WebBrowser.java +++ b/server/src/com/vaadin/server/WebBrowser.java @@ -264,6 +264,7 @@ public class WebBrowser implements Serializable { * @return true if the user is using Windows Phone, false if the user is not * using Windows Phone or if no information on the browser is * present + * @since 7.3.2 */ public boolean isWindowsPhone() { return browserDetails.isWindowsPhone(); diff --git a/shared/src/com/vaadin/shared/VBrowserDetails.java b/shared/src/com/vaadin/shared/VBrowserDetails.java index 3c89bdb6bb..5fbf9bbb39 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -431,6 +431,7 @@ public class VBrowserDetails implements Serializable { * Tests if the browser is run on Windows Phone. * * @return true if run on Windows Phone, false otherwise + * @since 7.3.2 */ public boolean isWindowsPhone() { return isWindowsPhone; -- 2.39.5