Primitive types are not nullable by default

This commit is contained in:
Bart van den Eijnden
2015-04-17 16:52:04 +02:00
parent 6c4f2a4ce3
commit 4901d9a48f
+4 -4
View File
@@ -28,7 +28,7 @@ var EsriJSONCRS = function() {};
/** /**
* CRS well know identifier. * CRS well know identifier.
* @type {!number} * @type {number}
*/ */
EsriJSONCRS.prototype.wkid; EsriJSONCRS.prototype.wkid;
@@ -43,14 +43,14 @@ var EsriJSONPoint = function() {};
/** /**
* M value of point. * M value of point.
* @type {!number} * @type {number}
*/ */
EsriJSONPoint.prototype.m; EsriJSONPoint.prototype.m;
/** /**
* X coordinate of point. * X coordinate of point.
* @type {!number} * @type {number}
*/ */
EsriJSONPoint.prototype.x; EsriJSONPoint.prototype.x;
@@ -58,7 +58,7 @@ EsriJSONPoint.prototype.x;
/** /**
* Y coordinate of point. * Y coordinate of point.
* @type {!number} * @type {number}
*/ */
EsriJSONPoint.prototype.y; EsriJSONPoint.prototype.y;