Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 53fbb6b

Browse files
author
hanbollar
committedApr 25, 2018
changes for timeInterval
1 parent a58882a commit 53fbb6b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Change Log
2929
* Fixed crash bug in PolylineCollection when a polyline was updated and removed at the same time. [#6455](https://github.com/AnalyticalGraphicsInc/cesium/pull/6455)
3030
* Fixed Imagery Layers Texture Filters Sandcastle example. [#6472](https://github.com/AnalyticalGraphicsInc/cesium/pull/6472).
3131
* Fixed a bug causing Cesium 3D Tilesets to not clip properly when tiles were unloaded and reloaded. [#6484](https://github.com/AnalyticalGraphicsInc/cesium/issues/6484)
32+
* Fixed `TimeInterval` so now it throws if `fromIso8601` is given an iso8601 input that doesn't have '/' for proper formatting.
3233

3334
### 1.44 - 2018-04-02
3435

‎Source/Core/TimeInterval.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ define([
33
'./defaultValue',
44
'./defined',
55
'./defineProperties',
6+
'./DeveloperError',
67
'./freezeObject',
78
'./JulianDate'
89
], function(
910
Check,
1011
defaultValue,
1112
defined,
1213
defineProperties,
14+
DeveloperError,
1315
freezeObject,
1416
JulianDate) {
1517
'use strict';
@@ -126,10 +128,12 @@ define([
126128
};
127129

128130
/**
129-
* Creates a new instance from an {@link http://en.wikipedia.org/wiki/ISO_8601|ISO 8601} interval.
131+
* Creates a new instance from a {@link http://en.wikipedia.org/wiki/ISO_8601|ISO 8601} interval.
132+
*
133+
* @throws DeveloperError if options.iso8601 does not contain a '/'.
130134
*
131135
* @param {Object} options Object with the following properties:
132-
* @param {String} options.iso8601 An ISO 8601 interval.
136+
* @param {String} options.iso8601 An ISO 8601 interval. Must contain a '/'.
133137
* @param {Boolean} [options.isStartIncluded=true] <code>true</code> if <code>options.start</code> is included in the interval, <code>false</code> otherwise.
134138
* @param {Boolean} [options.isStopIncluded=true] <code>true</code> if <code>options.stop</code> is included in the interval, <code>false</code> otherwise.
135139
* @param {Object} [options.data] Arbitrary data associated with this interval.
@@ -140,6 +144,9 @@ define([
140144
//>>includeStart('debug', pragmas.debug);
141145
Check.typeOf.object('options', options);
142146
Check.typeOf.string('options.iso8601', options.iso8601);
147+
if (options.iso8601.indexOf('/') === -1) {
148+
throw new DeveloperError('iso8601 must contain a / per proper formatting. See {@link http://en.wikipedia.org/wiki/ISO_8601|ISO 8601}.');
149+
}
143150
//>>includeEnd('debug');
144151

145152
var dates = options.iso8601.split('/');

0 commit comments

Comments
 (0)
Please sign in to comment.