浏览代码

Removed duplicate method

Carl Husberg 3 年之前
父节点
当前提交
0b94ed90e6
共有 1 个文件被更改,包括 0 次插入11 次删除
  1. 0 11
      collections.mod/linkedlist.bmx

+ 0 - 11
collections.mod/linkedlist.bmx

@@ -33,17 +33,6 @@ Public
 		End If
 	End Method
 
-	Rem
-	bbdoc: Creates a new #TLinkedList initialised by @array.
-	End Rem
-	Method New(array:T[])
-		If array Then
-			For Local element:T = EachIn array
-				AddLast(element)
-			Next
-		End If
-	End Method
-
 	Rem
 	bbdoc: Returns an iterator that iterates through the #TLinkedList.
 	End Rem