From 4901d9a48f17c0303332197773a6374441764826 Mon Sep 17 00:00:00 2001 From: Bart van den Eijnden Date: Fri, 17 Apr 2015 16:52:04 +0200 Subject: [PATCH] Primitive types are not nullable by default --- externs/esrijson.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/externs/esrijson.js b/externs/esrijson.js index 3f6886f3b9..22a62e9a3d 100644 --- a/externs/esrijson.js +++ b/externs/esrijson.js @@ -28,7 +28,7 @@ var EsriJSONCRS = function() {}; /** * CRS well know identifier. - * @type {!number} + * @type {number} */ EsriJSONCRS.prototype.wkid; @@ -43,14 +43,14 @@ var EsriJSONPoint = function() {}; /** * M value of point. - * @type {!number} + * @type {number} */ EsriJSONPoint.prototype.m; /** * X coordinate of point. - * @type {!number} + * @type {number} */ EsriJSONPoint.prototype.x; @@ -58,7 +58,7 @@ EsriJSONPoint.prototype.x; /** * Y coordinate of point. - * @type {!number} + * @type {number} */ EsriJSONPoint.prototype.y;