From 53ea05adc03871d2b8f2e569be2b35ac588ff3df Mon Sep 17 00:00:00 2001 From: Don Cross Date: Mon, 6 May 2019 14:44:01 -0400 Subject: [PATCH] Removed @constructor annotators. They don't seem to do anything. --- generate/template/astronomy.js | 11 ----------- source/js/astronomy.js | 11 ----------- 2 files changed, 22 deletions(-) diff --git a/generate/template/astronomy.js b/generate/template/astronomy.js index 55a3767e..0c9815e1 100644 --- a/generate/template/astronomy.js +++ b/generate/template/astronomy.js @@ -74,7 +74,6 @@ let sin_ob2000; * Most users can safely ignore this class. * * @class - * @constructor * * @memberof Astronomy * @@ -275,7 +274,6 @@ function TerrestrialTime(ut) { * to create a Time object. * * @class - * @constructor * @memberof Astronomy * * @param {(Date|number)} date @@ -1063,7 +1061,6 @@ function geo_pos(time, observer) { * along with the time at which the vector is valid. * * @class - * @constructor * @memberof Astronomy * * @property {number} x The x-coordinate expressed in astronomical units (AU). @@ -1082,7 +1079,6 @@ function Vector(x, y, z, t) { * Holds right ascension, declination, and distance of a celestial object. * * @class - * @constructor * @memberof Astronomy * * @property {number} ra @@ -1110,7 +1106,6 @@ function EquatorialCoordinates(ra, dec, dist) { * those found inside a corresponding {@link Astronomy.EquatorialCoordinates} object. * * @class - * @constructor * @memberof Astronomy * * @property {number} azimuth @@ -1152,7 +1147,6 @@ function HorizontalCoordinates(azimuth, altitude, ra, dec) { * and spherical coordinates (elon, elat) measured in degrees. * * @class - * @constructor * @memberof Astronomy * * @property {number} ex @@ -1382,7 +1376,6 @@ Astronomy.Horizon = function(date, location, ra, dec, refraction) { // based * Represents the geographic location of an observer on the surface of the Earth. * * @class - * @constructor * @memberof Astronomy * * @property {number} latitude_degrees @@ -2104,7 +2097,6 @@ function MoonMagnitude(phase, helio_dist, geo_dist) { * Contains information about the apparent brightness and sunlit phase of a celestial object. * * @class - * @constructor * @memberof Astronomy * * @property {Astronomy.Time} time @@ -2544,9 +2536,6 @@ Astronomy.Seasons = function(year) { * best in the morning or the evening. * * @class - * - * @constructor - * * @memberof Astronomy * * @property {Astronomy.Time} time When the event occurs. diff --git a/source/js/astronomy.js b/source/js/astronomy.js index bec9fa91..86235010 100644 --- a/source/js/astronomy.js +++ b/source/js/astronomy.js @@ -74,7 +74,6 @@ let sin_ob2000; * Most users can safely ignore this class. * * @class - * @constructor * * @memberof Astronomy * @@ -1113,7 +1112,6 @@ function TerrestrialTime(ut) { * to create a Time object. * * @class - * @constructor * @memberof Astronomy * * @param {(Date|number)} date @@ -1901,7 +1899,6 @@ function geo_pos(time, observer) { * along with the time at which the vector is valid. * * @class - * @constructor * @memberof Astronomy * * @property {number} x The x-coordinate expressed in astronomical units (AU). @@ -1920,7 +1917,6 @@ function Vector(x, y, z, t) { * Holds right ascension, declination, and distance of a celestial object. * * @class - * @constructor * @memberof Astronomy * * @property {number} ra @@ -1948,7 +1944,6 @@ function EquatorialCoordinates(ra, dec, dist) { * those found inside a corresponding {@link Astronomy.EquatorialCoordinates} object. * * @class - * @constructor * @memberof Astronomy * * @property {number} azimuth @@ -1990,7 +1985,6 @@ function HorizontalCoordinates(azimuth, altitude, ra, dec) { * and spherical coordinates (elon, elat) measured in degrees. * * @class - * @constructor * @memberof Astronomy * * @property {number} ex @@ -2220,7 +2214,6 @@ Astronomy.Horizon = function(date, location, ra, dec, refraction) { // based * Represents the geographic location of an observer on the surface of the Earth. * * @class - * @constructor * @memberof Astronomy * * @property {number} latitude_degrees @@ -2942,7 +2935,6 @@ function MoonMagnitude(phase, helio_dist, geo_dist) { * Contains information about the apparent brightness and sunlit phase of a celestial object. * * @class - * @constructor * @memberof Astronomy * * @property {Astronomy.Time} time @@ -3382,9 +3374,6 @@ Astronomy.Seasons = function(year) { * best in the morning or the evening. * * @class - * - * @constructor - * * @memberof Astronomy * * @property {Astronomy.Time} time When the event occurs.