Use Array<Foo> instead of Array.<Foo>
This commit is contained in:
@@ -44,13 +44,13 @@ class PriorityQueue {
|
||||
this.keyFunction_ = keyFunction;
|
||||
|
||||
/**
|
||||
* @type {Array.<T>}
|
||||
* @type {Array<T>}
|
||||
* @private
|
||||
*/
|
||||
this.elements_ = [];
|
||||
|
||||
/**
|
||||
* @type {Array.<number>}
|
||||
* @type {Array<number>}
|
||||
* @private
|
||||
*/
|
||||
this.priorities_ = [];
|
||||
|
||||
Reference in New Issue
Block a user