No need for @type when using @const

This commit is contained in:
Éric Lemoine
2013-12-18 11:23:34 +01:00
parent 7fe684a6d4
commit 779ea26f81

View File

@@ -32,8 +32,7 @@ ol.ENABLE_WEBGL = true;
/**
* The ratio between physical pixels and device-independent pixels
* (dips) on the device (`window.devicePixelRatio`).
* @const
* @type {number}
* @const {number}
* @todo stability experimental
*/
ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1;
@@ -41,8 +40,7 @@ ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1;
/**
* True if browser supports Canvas.
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_CANVAS = ol.ENABLE_CANVAS && (
@@ -65,8 +63,7 @@ ol.BrowserFeature.HAS_CANVAS = ol.ENABLE_CANVAS && (
/**
* Indicates if DeviceOrientation is supported in the user's browser.
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_DEVICE_ORIENTATION =
@@ -75,8 +72,7 @@ ol.BrowserFeature.HAS_DEVICE_ORIENTATION =
/**
* True if browser supports DOM.
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_DOM = ol.ENABLE_DOM;
@@ -84,8 +80,7 @@ ol.BrowserFeature.HAS_DOM = ol.ENABLE_DOM;
/**
* Is HTML5 geolocation supported in the current browser?
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_GEOLOCATION = 'geolocation' in goog.global.navigator;
@@ -93,8 +88,7 @@ ol.BrowserFeature.HAS_GEOLOCATION = 'geolocation' in goog.global.navigator;
/**
* True if browser supports touch events.
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH ||
@@ -105,8 +99,7 @@ ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH ||
/**
* True if browser supports WebGL.
* @const
* @type {boolean}
* @const {boolean}
* @todo stability experimental
*/
ol.BrowserFeature.HAS_WEBGL = ol.ENABLE_WEBGL && (