Browse Source

Removed duplicate method

Carl Husberg 3 năm trước cách đây
mục cha
commit
0b94ed90e6
1 tập tin đã thay đổi với 0 bổ sung11 xóa
  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