You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGES.md
+1
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ Change Log
29
29
* Fixed crash bug in PolylineCollection when a polyline was updated and removed at the same time. [#6455](https://github.com/AnalyticalGraphicsInc/cesium/pull/6455)
* 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.
Copy file name to clipboardexpand all lines: Source/Core/TimeInterval.js
+9-2
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,15 @@ define([
3
3
'./defaultValue',
4
4
'./defined',
5
5
'./defineProperties',
6
+
'./DeveloperError',
6
7
'./freezeObject',
7
8
'./JulianDate'
8
9
],function(
9
10
Check,
10
11
defaultValue,
11
12
defined,
12
13
defineProperties,
14
+
DeveloperError,
13
15
freezeObject,
14
16
JulianDate){
15
17
'use strict';
@@ -126,10 +128,12 @@ define([
126
128
};
127
129
128
130
/**
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 '/'.
130
134
*
131
135
* @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 '/'.
133
137
* @param {Boolean} [options.isStartIncluded=true] <code>true</code> if <code>options.start</code> is included in the interval, <code>false</code> otherwise.
134
138
* @param {Boolean} [options.isStopIncluded=true] <code>true</code> if <code>options.stop</code> is included in the interval, <code>false</code> otherwise.
135
139
* @param {Object} [options.data] Arbitrary data associated with this interval.
0 commit comments