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 {
871
871
* Gets or sets the number of elements that the SortedList can contain.
872
872
* @param value The number of elements that the SortedList can contain.
873
873
*/
874
- capacity ( value : number ) : number
874
+ capacity ( value ? : number ) : number
875
875
876
876
877
877
/**
@@ -883,7 +883,7 @@ declare module mx {
883
883
/**
884
884
* Gets the Comparer for the sorted list.
885
885
*/
886
- comparer ( ) : EqualityComparer < TKey >
886
+ comparer ( ) : Comparer < TKey >
887
887
888
888
889
889
/**
Original file line number Diff line number Diff line change @@ -871,7 +871,7 @@ declare module mx {
871
871
* Gets or sets the number of elements that the SortedList can contain.
872
872
* @param value The number of elements that the SortedList can contain.
873
873
*/
874
- capacity ( value : number ) : number
874
+ capacity ( value ? : number ) : number
875
875
876
876
877
877
/**
@@ -883,7 +883,7 @@ declare module mx {
883
883
/**
884
884
* Gets the Comparer for the sorted list.
885
885
*/
886
- comparer ( ) : EqualityComparer < TKey >
886
+ comparer ( ) : Comparer < TKey >
887
887
888
888
889
889
/**
You can’t perform that action at this time.
0 commit comments