Browse Source

Add @since to isWindowsPhone(). (#14425)

Change-Id: Ia4c212ead39d7b71c56db586c0a8559935cae263
tags/7.4.0.beta1
Sauli Tähkäpää 9 years ago
parent
commit
255b4e5075

+ 1
- 0
server/src/com/vaadin/server/WebBrowser.java View File

@@ -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();

+ 1
- 0
shared/src/com/vaadin/shared/VBrowserDetails.java View File

@@ -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;

Loading…
Cancel
Save