File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -871,7 +871,7 @@ declare module mx {
871871 * Gets or sets the number of elements that the SortedList can contain.
872872 * @param value The number of elements that the SortedList can contain.
873873 */
874- capacity ( value : number ) : number
874+ capacity ( value ? : number ) : number
875875
876876
877877 /**
@@ -883,7 +883,7 @@ declare module mx {
883883 /**
884884 * Gets the Comparer for the sorted list.
885885 */
886- comparer ( ) : EqualityComparer < TKey >
886+ comparer ( ) : Comparer < TKey >
887887
888888
889889 /**
Original file line number Diff line number Diff line change @@ -871,7 +871,7 @@ declare module mx {
871871 * Gets or sets the number of elements that the SortedList can contain.
872872 * @param value The number of elements that the SortedList can contain.
873873 */
874- capacity ( value : number ) : number
874+ capacity ( value ? : number ) : number
875875
876876
877877 /**
@@ -883,7 +883,7 @@ declare module mx {
883883 /**
884884 * Gets the Comparer for the sorted list.
885885 */
886- comparer ( ) : EqualityComparer < TKey >
886+ comparer ( ) : Comparer < TKey >
887887
888888
889889 /**
You can’t perform that action at this time.
0 commit comments