Remove @extends and @constructor annotations
This commit is contained in:
@@ -11,16 +11,14 @@
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Creates an empty linked list structure.
|
||||
*
|
||||
* @constructor
|
||||
* @struct
|
||||
* @param {boolean=} opt_circular The last item is connected to the first one,
|
||||
* and the first item to the last one. Default is true.
|
||||
*/
|
||||
class LinkedList {
|
||||
|
||||
/**
|
||||
* Creates an empty linked list structure.
|
||||
*
|
||||
* @param {boolean=} opt_circular The last item is connected to the first one,
|
||||
* and the first item to the last one. Default is true.
|
||||
*/
|
||||
constructor(opt_circular) {
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user